-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.06 KB
/
setup.py
File metadata and controls
27 lines (25 loc) · 1.06 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
from setuptools import setup
VERSION = '0.6.0'
setup(name='finndex',
version=VERSION,
description='A useful tool for crypto analysts providing several metrics on various cryptocurrencies.',
url='https://github.com/FinnitoProductions/Crypto-Sentiment-Tracker',
download_url='https://github.com/FinnitoProductions/finndex/archive/v{}-alpha.tar.gz'.format(VERSION),
author='Finn Frankis',
author_email='finn@teachmy.com',
license='MIT',
packages=['finndex', 'finndex.util', 'finndex.sentiment', 'finndex.fundamental', 'finndex.aggregate'],
install_requires=['beautifulsoup4',
'ipykernel',
'ipython',
'ipywidgets',
'matplotlib',
'numpy',
'pandas',
'plotly',
'pycorenlp',
'pytrends',
'requests',
'scipy',
'stanfordnlp'],
zip_safe=False)