hikyuu2/tools/setup.py

107 lines
4.5 KiB
Python
Raw Normal View History

2017-04-09 00:50:14 +08:00
#!/usr/bin/env python
#-*- coding:utf-8 -*-
from setuptools import setup, find_packages
import sys
import os
if sys.argv[-1] == 'publish':
os.system("python setup.py bdist_wheel --python-tag cp35 -p win-amd64")
os.system("twine upload dist/*")
sys.exit()
2017-04-09 00:50:14 +08:00
hku_name = "Hikyuu"
hku_version = "1.0.3"
2017-04-09 00:50:14 +08:00
hku_author = "fasiondog"
hku_author_email = "fasiondog@sina.com"
hku_license = "MIT"
2017-06-29 14:19:02 +08:00
hku_keywords = ("hikyuu", "quant", "trade", "System Trading", "backtester", "量化", "程序化交易", "量化交易", "系统交易")
2017-04-09 00:50:14 +08:00
hku_platforms = "Independant"
hku_url = "http://hikyuu.org/"
2017-06-29 14:19:02 +08:00
hku_description = "Hikyuu Quant Framework for System Trading Analysis and backtester"
with open("README.rst", encoding='utf-8') as f:
hku_long_description = f.read()
2017-04-09 00:50:14 +08:00
if sys.platform == 'win32':
2017-06-19 03:17:57 +08:00
hku_data_files = [('Lib/site-packages/hikyuu', ['hikyuu/hikyuu.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/hikyuu_utils.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/sqlite3.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/importdata.exe']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_chrono-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_date_time-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_filesystem-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_python-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_serialization-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/boost_system-vc100-mt-1_56.dll']),
#('Lib/site-packages/hikyuu', ['hikyuu/boost_thread-vc100-mt-1_56.dll']),
#('Lib/site-packages/hikyuu', ['hikyuu/boost_unit_test_framework-vc100-mt-1_56.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/log4cplus.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/libmysql.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/hdf5dll.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_hldll.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_cppdll.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/hdf5_hl_cppdll.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/szip.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/zlib.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/msvcp100.dll']),
('Lib/site-packages/hikyuu', ['hikyuu/msvcr100.dll'])]
2017-04-09 00:50:14 +08:00
else:
hku_data_files = []
setup(
name = hku_name,
version = hku_version,
description = hku_description,
long_description = hku_long_description,
author = hku_author,
author_email = hku_author_email,
license = hku_license,
keywords = hku_keywords,
platforms = hku_platforms,
url = hku_url,
packages = find_packages(),
zip_safe = False,
include_package_data=True,
package_data = {
'': ['*.rst', '*.pyd', '*.ini', '*.sql', '*.properties', '*.xml'],
},
data_files = hku_data_files,
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
2017-05-31 03:32:27 +08:00
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Financial',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Scientific/Engineering :: Mathematics',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
],
install_requires=[
2017-07-03 00:30:33 +08:00
#'numpy>=1.10.4',
#'matplotlib>=1.5.0',
#'pandas>=0.17.1',
#'tushare>=0.8.2',
'pyperclip>=1.5.27',
],
2017-04-09 00:50:14 +08:00
)