forked from StockNLP/StockNLP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
64 lines (51 loc) · 1.84 KB
/
Copy pathsetup.py
File metadata and controls
64 lines (51 loc) · 1.84 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
import os
import setuptools
from setuptools import setup
# Get version and release info, which is all stored in shablona/version.py
ver_file = os.path.join('StockNLP', 'version.py')
with open(ver_file) as f:
v = exec(f.read())
# Give setuptools a hint to complain if it's too old a version
# 24.2.0 added the python_requires option
# Should match pyproject.toml
# SETUP_REQUIRES = ['setuptools >= 24.2.0']
#
# # This enables setuptools to install wheel on-the-fly
#
# SETUP_REQUIRES += ['wheel'] if 'bdist_wheel' in sys.argv else []
setup(name='StockNLP', version=1.0,
description='Stock prediction based on sentiment analysis',
description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
long_description=open('README.md', 'r').read(),
long_description_content_type='text/markdown; \
charset=UTF-8; variant=GFM',
url='https://github.com/StockNLP/StockNLP',
license='MIT',
author='Yash Patel, Moses Prasad Varghese, Aditya Challa, Nelson, Samartha Ramkumar',
python_requires="~=3.9",
install_requires=[
"alpha-vantage==2.3.1"
"numpy==1.21.4",
"pandas==1.3.4",
"keras==2.7.0",
"tensorflow==2.7.0",
"scikit-learn==0.23.1",
"keras-tuner==1.0.1",
"plotly==5.4.0",
"pyyaml==6.0",
"scipy==1.7.3",
"nltk==3.6.5"
"decorator==5.1.0"
"psaw==0.1.0"
"streamlit==1.2.0"
"tabulate==0.8.9"
"tweepy==4.4.0"
"vader==0.0.3"
"yfinance==0.1.67"
"requests==2.26.0"
],
packages=setuptools.find_packages())
classifiers = ("Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent")