forked from Lumiwealth/lumibot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (53 loc) · 1.54 KB
/
setup.py
File metadata and controls
59 lines (53 loc) · 1.54 KB
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
55
56
57
58
59
import json
import requests
import setuptools
def increment_version():
resp = requests.get("https://pypi.python.org/pypi/lumibot/json")
j = json.loads(resp.content)
last_version = j["info"]["version"]
version_numbers = last_version.split(".")
version_numbers[-1] = str(int(version_numbers[-1]) + 1)
new_version = ".".join(version_numbers)
return new_version
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="lumibot",
version="1.5.5",
author="Robert Grzesik",
author_email="rob@lumiwealth.com",
description="Trading Framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/Lumiwealth/lumibot",
packages=setuptools.find_packages(),
install_requires=[
"pydantic",
"alpaca_trade_api",
"alpha_vantage",
"ibapi==9.81.1.post1",
"yfinance>=0.1.70",
"matplotlib",
"quandl",
"pandas>=1.4.0",
"pandas_datareader",
"pandas_market_calendars>=3.3",
"plotly",
"flask-socketio",
"flask-sqlalchemy",
"flask-marshmallow",
"marshmallow-sqlalchemy",
"flask-security",
"email_validator",
"bcrypt",
"pytest",
"scipy",
"quantstats",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)