Skip to content

Commit c9a4949

Browse files
committed
add setup.py and requirements.txt
1 parent 674c478 commit c9a4949

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
setuptools~=68.2.0
2+
pyhttpx~=2.10.12
3+
requests~=2.32.3

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='extendingPython',
5+
version='0.0.1',
6+
author='Mryan2005',
7+
author_email='[email protected]',
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+
)

0 commit comments

Comments
 (0)