This repository has been archived by the owner on Jan 26, 2021. It is now read-only.
forked from bankroll-py/bankroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (48 loc) · 1.78 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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="bankroll",
version="0.4.1",
author="Justin Spahr-Summers",
author_email="[email protected]",
description="Ingest portfolio and other data from multiple brokerages, and analyze it",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/bankroll-py/bankroll",
packages=["bankroll.analysis", "bankroll.interface"],
package_data={
"bankroll.analysis": ["py.typed"],
"bankroll.interface": ["bankroll.default.ini", "py.typed"],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial :: Investment",
"Typing :: Typed",
],
install_requires=[
"bankroll_marketdata ~= 0.4.0",
"bankroll_model ~= 0.4.1",
"bankroll_broker ~= 0.4.2",
"numpy ~= 1.17.0",
"progress ~= 1.5",
"pyfolio >= 0.9.2",
],
extras_require={
"ibkr": ["bankroll_broker_ibkr ~= 0.4.0"],
"schwab": ["bankroll_broker_schwab ~= 0.4.0"],
"fidelity": ["bankroll_broker_fidelity ~= 0.4.0"],
"vanguard": ["bankroll_broker_vanguard ~= 0.4.0"],
},
keywords="trading investing finance portfolio",
entry_points={"console_scripts": ["bankroll = bankroll.interface.__main__:main"]},
)