Skip to content

Commit 40d67cf

Browse files
committed
Update setup.py to include README and latest Python versions
1 parent 53c63be commit 40d67cf

File tree

2 files changed

+17
-1
lines changed

2 files changed

+17
-1
lines changed

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
#!/usr/bin/make -f
2+
3+
dist:
4+
python3 setup.py sdist bdist_wheel
5+
6+
pushreleasetest:
7+
python3 -m twine upload --repository testpypi dist/*
8+
9+
pushrelease:
10+
python3 -m twine upload dist/*
11+
12+
clean:
13+
$(RM) -r dist

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
name='httoop',
1111
version=version,
1212
description='object oriented HTTP protocol library',
13-
long_description='',
13+
long_description=open('README.md').read(),
14+
long_description_content_type='text/markdown',
1415
author='SpaceOne',
1516
author_email='[email protected]',
1617
url='https://github.com/spaceone/httoop',
@@ -29,6 +30,8 @@
2930
'Programming Language :: Python :: 3.5',
3031
'Programming Language :: Python :: 3.6',
3132
'Programming Language :: Python :: 3.7',
33+
'Programming Language :: Python :: 3.8',
34+
'Programming Language :: Python :: 3.9',
3235
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
3336
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
3437
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware',

0 commit comments

Comments
 (0)