-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 1.1 KB
/
setup.py
File metadata and controls
34 lines (31 loc) · 1.1 KB
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
34
from setuptools import setup
with open('README.md', encoding='utf-8') as fh:
long_description = fh.read()
setup(
name="chanjet-openapi-python-sdk",
version="1.0.2",
author="zc",
author_email="zhaochang1@chanjet.com",
description="畅捷通开放平台python版sdk",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/Chanjet/chanjet-openapi-python-sdk",
packages=[
'chanjet_openapi_python_sdk',
'chanjet_openapi_python_sdk.content',
'chanjet_openapi_python_sdk.content.tplus',
'chanjet_openapi_python_sdk.exception',
'chanjet_openapi_python_sdk.request',
'chanjet_openapi_python_sdk.request.tplus',
'chanjet_openapi_python_sdk.response',
'chanjet_openapi_python_sdk.response.tplus',
'chanjet_openapi_python_sdk.utils'
],
install_requires=['requests==2.26.0'],
classifiers=[
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)