-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (42 loc) · 1.34 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
from setuptools import setup
with open("README.md", "r") as f:
desc = f.read()
setup(
name="portan",
version="0.1.0",
description="Portfolio analytics and reporting toolset in Python",
long_description=desc,
long_description_content_type="text/markdown",
url="https://github.com/draktr/portan",
author="draktr",
license="MIT License",
packages=["portan"],
python_requires=">=3.6",
install_requires=[
"numpy",
"pandas",
"yfinance",
"matplotlib",
"seaborn",
"scipy",
"scikit-learn",
"statsmodels",
],
keywords="portfolio finance asset-management quant trading investment",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Scientific/Engineering",
],
project_urls={
"Documentation": "https://portan.readthedocs.io/en/latest/",
"Issues": "https://github.com/draktr/portan/issues",
},
)