generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
37 lines (35 loc) · 1.14 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
from setuptools import setup, find_packages
with open(file="README.md", mode="r") as fh:
long_description = fh.read()
setup(
name='py-portfolio',
author='Alex Reed',
author_email='[email protected]',
version='0.0.1',
description='A python application, that demonstrates optimizing a portfolio using machine learning.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/areed1192/portfolio-optimization',
install_requires=[
'requests==2.24.0',
'matplotlib==3.3.0',
'numpy==1.22.0',
'pandas==1.0.5',
'scipy==1.5.2',
'fake_useragent==0.1.11',
'python_dateutil==2.8.1',
'scikit_learn==0.23.2'
],
packages=find_packages(
include=['pyopt']
),
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
python_requires='>3.7'
)