|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | + |
| 3 | +from setuptools import setup, find_packages |
| 4 | +from codecs import open |
| 5 | +from os import path |
| 6 | + |
| 7 | +here = path.abspath(path.dirname(__file__)) |
| 8 | + |
| 9 | +with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
| 10 | + long_description = f.read() |
| 11 | + |
| 12 | +setup( |
| 13 | + name='shipane_sdk', |
| 14 | + |
| 15 | + version='1.0.0.a1', |
| 16 | + |
| 17 | + description=u'实盘易(ShiPanE)Python SDK,通达信自动化交易 API。', |
| 18 | + long_description=long_description, |
| 19 | + |
| 20 | + url='https://github.com/sinall/ShiPanE-Python-SDK', |
| 21 | + |
| 22 | + author='sinall', |
| 23 | + author_email='gaoruinan@163.com', |
| 24 | + |
| 25 | + license='MIT', |
| 26 | + |
| 27 | + classifiers=[ |
| 28 | + 'Development Status :: 3 - Alpha', |
| 29 | + |
| 30 | + 'Intended Audience :: Developers', |
| 31 | + 'Intended Audience :: Financial and Insurance Industry', |
| 32 | + 'Topic :: Office/Business :: Financial :: Investment', |
| 33 | + |
| 34 | + 'License :: OSI Approved :: MIT License', |
| 35 | + |
| 36 | + 'Programming Language :: Python :: 2.7', |
| 37 | + 'Programming Language :: Python :: 3', |
| 38 | + 'Programming Language :: Python :: 3.3', |
| 39 | + 'Programming Language :: Python :: 3.4', |
| 40 | + 'Programming Language :: Python :: 3.5', |
| 41 | + ], |
| 42 | + |
| 43 | + keywords='ShiPanE SDK 通达信 TDX Automation', |
| 44 | + |
| 45 | + packages=find_packages(exclude=['contrib', 'docs', 'tests']), |
| 46 | + |
| 47 | + install_requires=['requests', 'six'], |
| 48 | + |
| 49 | + extras_require={ |
| 50 | + 'dev': [], |
| 51 | + 'test': [], |
| 52 | + }, |
| 53 | + |
| 54 | + package_data={ |
| 55 | + }, |
| 56 | + |
| 57 | + data_files=[], |
| 58 | + |
| 59 | + entry_points={ |
| 60 | + 'console_scripts': [ |
| 61 | + ], |
| 62 | + }, |
| 63 | +) |
0 commit comments