-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
52 lines (44 loc) · 1.46 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
import setuptools
import codecs
import os.path
def read(rel_path):
here = os.path.abspath(os.path.dirname(__file__))
with codecs.open(os.path.join(here, rel_path), 'r') as fp:
return fp.read()
def get_version(rel_path):
for line in read(rel_path).splitlines():
if line.startswith('__version__'):
delim = '"' if '"' in line else "'"
return line.split(delim)[1]
else:
return "Undefined"
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
name="Qube",
version=get_version("qube/__init__.py"),
author="Dmitry Marienko",
author_email="[email protected]",
description="Qube",
long_description="Quantitative Backtesting Environment",
long_description_content_type="text/markdown",
url="https://github.com/dmarienko/Qube",
project_urls={
"Bug Tracker": "https://github.com/dmarienko/Qube/issues",
},
scripts=['bin/booster'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD 2-Clause License",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(exclude=['qube/tests']),
package_data={
'': ['*.json', '*.csv'],
},
python_requires='>=3.6',
# setup_requires=['setuptools_scm'],
keywords=["quantitative", "backtesting", "backtester", "quantitative finance"],
include_package_data=True,
install_requires=required
)