-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
54 lines (46 loc) · 1.31 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
54
#!/usr/bin/env python
import sys
from codecs import open as openc
from os import path
from setuptools import find_packages, setup
here = path.abspath(path.dirname(__file__))
py_version = sys.version_info
assert py_version.major == 3
assert py_version.minor >= 5
with openc(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
with openc('requirements.txt', 'r') as f:
require_list = [line.strip() for line in f]
setup(
name='alpha',
version='1.0.0',
description='quant strategy and backtesting',
long_description=long_description,
url='https://bitbucket.org/fintendtrading/alpha',
author='Fintend',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
keywords='',
packages=find_packages(),
install_requires=require_list,
extras_require={
'dev': [
],
'test': ['coverage'],
},
package_data={
'': ['*.*'],
},
# entry_points={
# 'console_scripts': [
# 'atrobot=atrobot:entrypoint',
# ],
# },
)