-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
34 lines (27 loc) · 1.1 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
from setuptools import setup, find_packages
def read_requirements(file):
with open(file) as f:
return f.read().splitlines()
def read_file(file):
with open(file) as f:
return f.read()
long_description = read_file("README.md")
requirements = read_requirements("requirements.txt")
setup(
name='qis',
version='2.1.32',
author='Artur Sepp',
author_email='artursepp@gmail.com',
url='https://github.com/ArturSepp/QuantInvestStrats',
description='Implementation of statistical analytics, visualisation and reporting for Quantitative Investment Strategies',
long_description_content_type="text/x-rst", # If this causes a warning, upgrade your setuptools package
long_description=long_description,
license="MIT license",
packages=find_packages(exclude=["qis/examples/figures/", "qis/examples/notebooks/"]), # Don't include test directory in binary distribution
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)