Skip to content

Commit 0adc1d6

Browse files
authored
Update setup.py
1 parent 7d53d7d commit 0adc1d6

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

setup.py

Lines changed: 16 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,25 @@
11
from 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

58
setup(
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+
)

0 commit comments

Comments
 (0)