forked from waditu/czsc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (27 loc) · 893 Bytes
/
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
# coding: utf-8
from setuptools import setup, find_packages
import chan
setup(
name="chan",
version=chan.version,
keywords=("缠论", "技术分析"),
description="缠论技术分析工具",
long_description="缠论技术分析工具",
license="MIT",
url="https://github.com/zengbin93/chan",
author=chan.author,
author_email=chan.email,
packages=find_packages(exclude=['test', 'images']),
include_package_data=True,
install_requires=[
"requests", "pandas", "tushare"
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)