-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (27 loc) · 875 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
from setuptools import find_packages, setup
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(
name='bestdori-api',
version='1.1.6',
author='WindowsSov8',
author_email='[email protected]',
description='Bestdori 的各种 API 调用整合,另外附带部分功能',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/WindowsSov8forUs/bestdori-api',
include_package_data=False,
packages=find_packages(),
license='MIT',
classifiers=[
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'
],
python_requires='>=3.8',
install_requires=[
'httpx>=0.22.0',
'aiohttp>=3.8.1',
'typing_extensions>=4.5.0'
]
)