-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 930 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
30
31
32
33
import setuptools
# encoding: utf-8
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="ecnu-openapi-sdk-python",
version="1.0.0",
author="ECNU",
author_email="[email protected]",
description="ecnu-openapi-sdk-python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ECNU/ecnu-openapi-sdk-python",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
install_requires=[
"oauthlib==3.2.0",
"psutil==5.9.4",
"Requests==2.31.0",
"requests_oauthlib==1.3.1",
"SQLAlchemy==2.0.22",
"psycopg2",
"pymssql",
"pymysql",
"cx_oracle"
],
)