File tree Expand file tree Collapse file tree 1 file changed +12
-6
lines changed
Expand file tree Collapse file tree 1 file changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,10 @@ $ python -m pypack appvey.py
2222 * Command line script entry for the ` main() ` function
2323 * ` requirements.txt ` detected and included
2424
25+ #### Changes
26+
27+ * ` 1.0 ` - Python 3 compatibility fix
28+
2529#### Details
2630
2731Necessary package fields are read from the .py module, without
@@ -32,13 +36,13 @@ imporing it:
3236 * ` __version__ `
3337 * ` __url__ `
3438
35- Also detects and inserts these optional fields:
39+ Also detects and restores these optional fields:
3640
3741 * ` __license__ `
3842 * ` description ` - first line of module docstring
3943
4044Python packaging still relies on ` setup.py ` , so it is created
41- automatically.
45+ automatically (but this may change with PEP-517 and PEP-518) .
4246
4347` requirements.txt ` should use safe setuptools subset
4448https://github.com/pypa/setuptools/issues/1080#issuecomment-313934637
@@ -53,13 +57,15 @@ https://github.com/pypa/setuptools/issues/1080#issuecomment-313934637
5357
5458* [ ] Write changelog
5559
56- * [ ] Upload archive to PyPI
57-
58- twine upload <package.zip>
59-
6060* [ ] Tag release
6161
6262 ```
6363 git tag -a
6464 git push --follow-tags
6565 ```
66+
67+ * [ ] Upload archive to PyPI
68+
69+ ```
70+ twine upload <package.zip>
71+ ```
You can’t perform that action at this time.
0 commit comments