forked from waditu/czsc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 loc) · 875 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
# coding: utf-8
from setuptools import setup, find_packages
import chan
setup(
name="chan",
version=chan.__version__,
author=chan.__author__,
author_email=chan.__email__,
keywords=("缠论", "技术分析"),
description="缠论技术分析工具",
long_description="缠论技术分析工具",
license="MIT",
url="https://github.com/zengbin93/chan",
packages=find_packages(exclude=['test', 'images', 'docs']),
include_package_data=True,
install_requires=["pandas"],
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',
]
)