-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (22 loc) · 878 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
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
readme = readme_file.read()
requirements = ["wheel==0.34.2", "keras==2.3.1", "tensorflow>=1.14.0", "pandas==1.0.3", "matplotlib==3.2.1",
"beautifulsoup4>=4.9.0", "aiohttp>=3.6.2", "PyYAML==5.4"]
setup(
name="coronavirus-predictor",
version="1.0.0",
author="Berat Cankar",
author_email="[email protected]",
description="Coronavirus Prediction with RNN and Data Crawler",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/yakuza8/coronavirus-timeseries-predictor/",
packages=find_packages(),
python_requires='>=3.6',
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
],
)