forked from cvxgrp/cvxportfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
22 lines (21 loc) · 770 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
from setuptools import setup
setup(
name='cvxportfolio',
version='0.0.5',
author='Enzo Busseti and Steven Diamond',
author_email='[email protected], [email protected]',
packages=['cvxportfolio',
'cvxportfolio.tests',
'cvxportfolio.utils'],
package_dir={'cvxportfolio': 'cvxportfolio'},
package_data={'cvxportfolio': ['tests/returns.csv', 'tests/sigmas.csv', 'tests/volumes.csv']},
url='https://github.com/cvxgrp/cvxportfolio/',
license='Apache',
zip_safe=False,
description='ConVeX Portfolio Optimization and Simulation toolset.',
install_requires=["pandas",
"numpy",
"matplotlib",
"cvxpy>=1.0.6"],
use_2to3=True,
)