forked from waditu/czsc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (22 loc) · 872 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
# coding: utf-8
from setuptools import setup, find_packages
import czsc
setup(
name="czsc",
version=czsc.__version__,
author=czsc.__author__,
author_email=czsc.__email__,
keywords=["缠论", "技术分析", "A股", "期货", "缠中说禅", "单因子分析"],
description="缠中说禅技术分析工具",
long_description="缠中说禅技术分析工具,源自 http://blog.sina.com.cn/chzhshch",
license="MIT",
url="https://github.com/zengbin93/czsc",
packages=find_packages(exclude=['test', 'images', 'docs']),
include_package_data=True,
install_requires=["pandas", "pyecharts", "tushare", "requests", "seaborn"],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
]
)