-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
- [ ] Run tox | ||
``` | ||
tox -e py37 | ||
``` | ||
|
||
- [ ] Build the packages | ||
``` | ||
python setup.py bdist_wheel sdist | ||
``` | ||
|
||
- [ ] Check the packages | ||
``` | ||
twine check dist/* | ||
``` | ||
|
||
- [ ] Upload the packages to to TestPyPi | ||
``` | ||
twine upload --repository-url https://test.pypi.org/legacy/ dist/* | ||
``` | ||
|
||
- [ ] Verify everything looks good by going to https://test.pypi.org/project/cincoconfig | ||
- [ ] Upload to PyPI | ||
``` | ||
twine upload dist/* | ||
``` | ||
|
||
- [ ] Tag the release | ||
``` | ||
git tag vX.Y.Z | ||
git push origin vX.Y.Z | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,5 @@ pytest-cov | |
sphinx | ||
sphinx-autodoc-typehints | ||
sphinx-rtd-theme | ||
twine | ||
wheel |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,15 +20,21 @@ def load_requirements(filename): | |
license='ISC', | ||
description='Universal configuration file parser', | ||
long_description=open("README.md", 'r').read(), | ||
long_description_content_type='text/markdown', | ||
author='Adam Meily', | ||
author_email='[email protected]', | ||
url='https://github.com/ameily/cincoconfig', | ||
url='https://cincoconfig.readthedocs.io/en/latest/', | ||
packages=['cincoconfig', 'cincoconfig.formats'], | ||
install_requires=requirements, | ||
extras_require={ | ||
'dev': dev_requirements, | ||
'features': feature_requirements | ||
}, | ||
project_urls={ | ||
'Travis CI': 'https://travis-ci.org/ameily/cincoconfig', | ||
'Documentation': 'https://cincoconfig.readthedocs.io/en/latest/', | ||
'Source': 'https://github.com/ameily/cincoconfig/', | ||
}, | ||
keywords=['config', 'configuration'], | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
|