File tree Expand file tree Collapse file tree 5 files changed +34
-58
lines changed Expand file tree Collapse file tree 5 files changed +34
-58
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Then run
6868``` python
6969bin / pip install - r requirements.txt
7070
71- bin / python setup.py install
71+ bin / python - m pip install - e .
7272```
7373
7474## App Usage
Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Then run
6565
6666 bin/pip install -r requirements.txt
6767
68- bin/python setup.py install
68+ bin/python -m pip install -e .
6969
7070App Usage
7171---------
Original file line number Diff line number Diff line change 1+ [build-system ]
2+ requires = [" setuptools" ]
3+ build-backend = " setuptools.build_meta"
4+
5+ [project ]
6+ name = " py-vapid"
7+ version = " 1.9.2"
8+ license = {text = " MPL-2.0" }
9+ description = " Simple VAPID header generation library"
10+ readme = " README.rst"
11+ authors = [{
name =
" JR Conlin" ,
email =
" [email protected] " }]
12+ keywords = [" vapid" , " push" , " webpush" ]
13+ classifiers = [
14+ " Topic :: Internet :: WWW/HTTP" ,
15+ " Programming Language :: Python" ,
16+ " Programming Language :: Python :: 3" ,
17+ ]
18+ dynamic = [" dependencies" ]
19+
20+ [project .urls ]
21+ Homepage = " https://github.com/mozilla-services/vapid"
22+
23+ [project .scripts ]
24+ vapid = " py_vapid.main:main"
25+
26+ [tool .setuptools .dynamic ]
27+ dependencies = {file = " requirements.txt" }
28+
29+ [tool .setuptools .packages .find ]
30+ include = [" py_vapid*" ]
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 33# remember to update the README.rst file
44# pandoc --from=markdown --to=rst --output README.rst README.md
55# pandoc --from=markdown --to=rst --output CHANGELOG.rst CHANGELOG.md
6- venv/bin/python setup.py sdist
6+ venv/bin/python -m pip install --upgrade build
7+ venv/bin/python -m build
78venv/bin/twine upload dist/* --verbose
You can’t perform that action at this time.
0 commit comments