File tree Expand file tree Collapse file tree 1 file changed +16
-11
lines changed
Expand file tree Collapse file tree 1 file changed +16
-11
lines changed Original file line number Diff line number Diff line change 11from setuptools import setup ,find_packages
22
33# print(find_packages())
4+ with open ("README.md" ,encoding = "utf-8" ) as f :
5+ md = f .read ()
6+
47
58setup (
6- name = 'cdebug' ,
7- version = '0.0.1' ,
8- author = 'wayne931121' ,
9- author_email = '' ,
10- description = 'debug' ,
11- license = 'CC-BY-NC 4.0' ,
12- url = 'https://github.com/wayne931121' ,
9+ name = "cdebug" ,
10+ version = "0.0.1" ,
11+ author = "wayne931121" ,
12+ author_email = "" ,
13+ description = "debug" ,
14+ long_description = md ,
15+ long_description_content_type = "text/markdown" ,
16+ license = "CC-BY-NC 4.0" ,
17+ url = "https://github.com/wayne931121" ,
1318 packages = find_packages (),
1419 install_requires = [],
1520 classifiers = [
16- ' Programming Language :: Python :: 3' ,
17- ' Operating System :: OS Independent' ,
21+ " Programming Language :: Python :: 3" ,
22+ " Operating System :: OS Independent" ,
1823 ],
19- python_requires = ' >=3.0' ,
20- )
24+ python_requires = " >=3.0" ,
25+ )
You can’t perform that action at this time.
0 commit comments