forked from jcrichard/pyrb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 1008 Bytes
/
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
from setuptools import setup, find_packages
DISTNAME = "pyrb"
VERSION = "1.0.1"
DESCRIPTION = (
"""pyrb is a Python library to solve constrained risk budgeting problem."""
)
LONG_DESCRIPTION = (
"""pyrb is a Python library to solve constrained risk budgeting problem."""
)
AUTHOR = "Jean-Charles Richard"
AUTHOR_EMAIL = "[email protected]"
URL = "https://github.com/jcrichard/pyrb"
LICENSE = "Apache License, Version 2.0"
REQUIREMENTS = ["pandas>=0.19", "numba>=0.4", "quadprog>=0.1.0"]
if __name__ == "__main__":
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=LICENSE,
packages=find_packages(),
package_data={"docs": ["*"]},
include_package_data=True,
zip_safe=False,
install_requires=REQUIREMENTS,
classifiers=["Programming Language :: Python :: 3.4"],
)