-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (18 loc) · 797 Bytes
/
setup.py
File metadata and controls
21 lines (18 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(name='pymarkowitz',
version='1.1.5',
description='pymarkowitz',
url='https://github.com/johnsoong216/pymarkowitz',
packages=["pymarkowitz"],
author='johnsoong216',
author_email='johnsoong216@hotmail.com',
license='MIT',
keywords=['portfolio-optimization', 'finance', 'mean-variance-optimization'],
install_requires=["numpy", "pandas", "pandas-datareader", "sklearn", "seaborn", "plotly", "matplotlib", "bt"],
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False)