-
Notifications
You must be signed in to change notification settings - Fork 170
/
setup.py
34 lines (30 loc) · 1.01 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
# -*- coding: utf-8 -*-
from setuptools import setup
from puppet import __version__ as VERSION
REQUIRED = ['baidu-aip', 'pydirectinput']
REQUIRES_PYTHON = '>=3.4.0'
setup(
name='puppet',
version=VERSION,
description=("一个用来交易沪深A股的应用编程接口"),
license='MIT',
author='Raytone-D',
author_email='[email protected]',
url='https://github.com/Raytone-D/puppet',
keywords="stock TraderApi Quant",
python_requires=REQUIRES_PYTHON,
install_requires=REQUIRED,
packages=['puppet'],
# test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)