# coding: utf-8 from setuptools import setup, find_packages setup( name="chan", version="V 0.0.1", keywords=("缠论", "技术分析"), description="缠论技术分析工具", long_description="缠论技术分析工具", license="MIT", url="https://github.com/zengbin93/chan", author="zengbin93", author_email="zeng_bin8888@163.com", 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', ] )