File tree Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Expand file tree Collapse file tree 2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ setuptools ~= 68.2.0
2
+ pyhttpx ~= 2.10.12
3
+ requests ~= 2.32.3
Original file line number Diff line number Diff line change
1
+ from setuptools import setup , find_packages
2
+
3
+ setup (
4
+ name = 'extendingPython' ,
5
+ version = '0.0.1' ,
6
+ author = 'Mryan2005' ,
7
+
8
+ description = 'A short description of the package' ,
9
+ long_description = open ('README.md' ).read (),
10
+ long_description_content_type = 'text/markdown' ,
11
+ url = 'https://github.com/Mryan2005/extendingPython' ,
12
+ packages = find_packages (),
13
+ install_requires = [
14
+ # 列出你的包依赖,例如:
15
+ # 'requests>=2.25.1',
16
+ open ('requirements.txt' ).read ().splitlines ()
17
+ ],
18
+ classifiers = [
19
+ 'Programming Language :: Python :: 3' ,
20
+ 'License :: OSI Approved :: Apache License 2.0' ,
21
+ 'Operating System :: All OS' ,
22
+ ],
23
+ python_requires = '>=3.6' ,
24
+ )
You can’t perform that action at this time.
0 commit comments