-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
41 lines (38 loc) · 1.33 KB
/
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
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
"""
Created on 2018/9/16
@author: gaoan
"""
from os import path
from setuptools import find_packages, setup
from tigeropen import __VERSION__
with open(path.join(path.abspath(path.dirname(__file__)), 'requirements.txt')) as f:
install_requires = f.read()
with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='tigeropen',
version=__VERSION__,
description='TigerBrokers Open API',
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(exclude=["tests"]),
author='TigerBrokers',
author_email='openapi@tigerbrokers.com',
license='Apache License v2',
package_data={'': ['*.*']},
url='https://github.com/tigerbrokers/openapi-python-sdk',
platforms='any',
install_requires=install_requires,
classifiers=[
'Programming Language :: Python',
'Operating System :: Microsoft :: Windows',
'Operating System :: Unix',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
)