-
Notifications
You must be signed in to change notification settings - Fork 124
/
setup.py
49 lines (41 loc) · 1.24 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
42
43
44
45
46
47
48
49
# coding:utf8
from setuptools import setup
import easyhistory
long_desc = """
easyhistory
===============
* easy to use rqalpha history data
Installation
--------------
pip install easytrader
Upgrade
---------------
pip install easytrader --upgrade
"""
setup(
name='easyhistory',
version=easyhistory.__version__,
description='A utility for rqalpha history',
long_description=long_desc,
author='shidenggui',
author_email='longlyshidenggui@gmail.com',
license='BSD',
url='https://github.com/shidenggui/easyhistory',
keywords='China stock trade',
install_requires=[
'rqalpha',
'requests',
'six',
'easyutils',
],
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: BSD License'],
packages=['easyhistory'],
package_data={},
)