-
-
Notifications
You must be signed in to change notification settings - Fork 204
/
Copy pathsetup.py
41 lines (39 loc) · 1.6 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
from setuptools import setup, find_packages
long_description = """findatapy creates an easy to use Python API to download market data from many sources including
Quandl, Bloomberg, Yahoo, Google etc. using a unified high level interface. Users can also define their own custom
tickers, using configuration files. There is also functionality which is particularly useful for those downloading FX market data."""
setup(name="findatapy",
version="0.1.37",
description="Market data library",
author="Saeed Amen",
author_email="[email protected]",
license="Apache 2.0",
long_description=long_description,
keywords=["pandas", "data", "Bloomberg", "tick", "stocks", "equities"],
url="https://github.com/cuemacro/findatapy",
packages=find_packages(),
include_package_data=True,
install_requires=["pandas",
"twython",
"pytz",
"requests",
"numpy",
"pandas_datareader",
"alpha_vantage",
"eikon",
"financepy",
"yfinance",
"quandl",
"chartpy",
"statsmodels",
"multiprocess",
"pathos",
"redis",
"numba",
"pyarrow",
"keyring",
"openpyxl"],
extras_require={
"databento": ["databento"]
},
zip_safe=False)