-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
43 lines (41 loc) · 1.26 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
from setuptools import setup, find_packages
import versioneer
with open("README.md") as f:
long_description = f.read()
setup(
name="margot",
packages=find_packages(),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
license="apache-2.0",
description="An algorithmic trading framework for PyData.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Rich Atkinson",
author_email="rich@airteam.com.au",
url="https://github.com/pymargot/margot",
download_url="",
keywords=["quant", "trading", "systematic"],
install_requires=[
"numpy",
"pandas",
"scipy",
"pyfolio",
"exchange_calendars",
"versioneer",
"pytz",
"alpha_vantage",
"tables",
"ftx",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)