Skip to content

Commit

Permalink
Update setup.py to include README and latest Python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
spaceone committed Nov 3, 2020
1 parent 53c63be commit 40d67cf
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
13 changes: 13 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
#!/usr/bin/make -f

dist:
python3 setup.py sdist bdist_wheel

pushreleasetest:
python3 -m twine upload --repository testpypi dist/*

pushrelease:
python3 -m twine upload dist/*

clean:
$(RM) -r dist
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
name='httoop',
version=version,
description='object oriented HTTP protocol library',
long_description='',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
author='SpaceOne',
author_email='[email protected]',
url='https://github.com/spaceone/httoop',
Expand All @@ -29,6 +30,8 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',
Expand Down

0 comments on commit 40d67cf

Please sign in to comment.