File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change 10
10
name = 'httoop' ,
11
11
version = version ,
12
12
description = 'object oriented HTTP protocol library' ,
13
- long_description = '' ,
13
+ long_description = open ('README.md' ).read (),
14
+ long_description_content_type = 'text/markdown' ,
14
15
author = 'SpaceOne' ,
15
16
16
17
url = 'https://github.com/spaceone/httoop' ,
29
30
'Programming Language :: Python :: 3.5' ,
30
31
'Programming Language :: Python :: 3.6' ,
31
32
'Programming Language :: Python :: 3.7' ,
33
+ 'Programming Language :: Python :: 3.8' ,
34
+ 'Programming Language :: Python :: 3.9' ,
32
35
'Topic :: Internet :: WWW/HTTP :: HTTP Servers' ,
33
36
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application' ,
34
37
'Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware' ,
You can’t perform that action at this time.
0 commit comments