forked from quantopian/pyfolio
-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
executable file
·59 lines (52 loc) · 2.09 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
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
import versioneer
DISTNAME = 'pyfolio'
DESCRIPTION = "pyfolio is a Python library for performance"
"and risk analysis of financial portfolios"
LONG_DESCRIPTION = """pyfolio is a Python library for performance and risk analysis of
financial portfolios developed by `Quantopian Inc`_. It works well with the
`Zipline`_ open source backtesting library.
At the core of pyfolio is a so-called tear sheet that consists of
various individual plots that provide a comprehensive performance
overview of a portfolio.
.. _Quantopian Inc: https://www.quantopian.com
.. _Zipline: http://zipline.io
"""
MAINTAINER = 'Quantopian Inc'
MAINTAINER_EMAIL = '[email protected]'
AUTHOR = 'Quantopian Inc'
AUTHOR_EMAIL = '[email protected]'
URL = "https://github.com/quantopian/pyfolio"
LICENSE = "Apache License, Version 2.0"
classifiers = ['Development Status :: 4 - Beta',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Mathematics',
'Operating System :: OS Independent']
if __name__ == "__main__":
setup(
name=DISTNAME,
cmdclass=versioneer.get_cmdclass(),
version=versioneer.get_version(),
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
packages=find_packages(include=['pyfolio', 'pyfolio.*']),
package_data={
'pyfolio._tests.test_data': ['*.csv', '*.gz'],
"pyfolio": ["py.typed"],
},
classifiers=classifiers
)