-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 822 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
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt", "r") as f:
requirements = [line.strip() for line in f]
setup(
name='AI Stock Advisor',
version='.1',
description='An intelligent ML system to find undervalued/overvalued stocks.',
author='Nolan Braman',
license="GNU3.0",
long_description=long_description,
author_email='[email protected]',
packages=['AI Stock Advisor'], # same as name
python_requires='>=3.6',
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU 3.0 License",
"Operating System :: OS Independent",
],
)