forked from fmilthaler/FinQuant
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (56 loc) · 1.76 KB
/
setup.py
File metadata and controls
59 lines (56 loc) · 1.76 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 setuptools
# get version/release from file
with open("version", "r") as f:
ver = dict(x.rstrip().split("=") for x in f)
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="FinQuant",
version=ver["version"],
author="Frank Milthaler",
author_email="f.milthaler@gmail.com",
description="A program for financial portfolio management, analysis and optimisation",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/fmilthaler/FinQuant",
download_url="https://github.com/fmilthaler/FinQuant/archive/v{}.tar.gz".format(
ver["release"]
),
license="MIT",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Education",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
keywords=[
"finance",
"portfolio",
"investment",
"numerical",
"optimisation",
"monte carlo",
"efficient frontier",
"quantitative",
"quant",
],
python_requires=">=3.5",
install_requires=[
"quandl",
"yfinance",
"numpy",
"pandas",
"scipy",
"matplotlib",
"pytest",
],
project_urls={"Documentation": "https://finquant.readthedocs.io"},
)