forked from yutiansut/QUANTAXIS_RUN
-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
53 lines (46 loc) · 1.14 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import codecs
import io
import os
import re
import sys
import webbrowser
import platform
try:
from setuptools import setup
except:
from distutils.core import setup
NAME = "quantaxis_run"
"""
名字,一般放你包的名字即可
"""
PACKAGES = ["quantaxis_run"]
"""
包含的包,可以多个,这是一个列表
"""
DESCRIPTION = "QUANTAXIS:Quantitative Financial Strategy Framework"
KEYWORDS = ["quantaxis", "quant", "finance", "Backtest", 'Framework']
AUTHOR_EMAIL = "yutiansut@qq.com"
AUTHOR = 'yutiansut'
URL = "https://github.com/yutiansut/quantaxis_run"
LICENSE = "MIT"
setup(
name=NAME,
version='1.9',
description=DESCRIPTION,
long_description='automatic run quantaxis program',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
],
install_requires=['celery>4', 'quantaxis>=1.3.1'],
keywords=KEYWORDS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=PACKAGES,
include_package_data=True,
zip_safe=True
)