forked from enzoampil/fastquant
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 1.01 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("python/requirements.txt", "r") as fh:
install_requires = fh.read().splitlines()
setuptools.setup(
name="fastquant",
version="0.1.8.1",
author="Lorenzo Ampil",
author_email="[email protected]",
description="Bringing data driven investments to the mainstream",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/enzoampil/fastquant",
packages=setuptools.find_packages(where="./python", exclude=["docs", "tests"]),
package_dir={"": "python"},
package_data={"fastquant": ["data/*"]},
include_package_data=True,
scripts=["python/scripts/get_disclosures", "python/scripts/update_cache"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=install_requires,
)