forked from mquad/sars_tutorial
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 908 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
29
30
31
32
33
34
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sars_tutorial",
version="0.0.1",
author="Massimo Quadrana",
author_email="max.square@gmail.com",
description="Sars tutorial",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mquad/sars_tutorial",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=[
"scipy==1.1.0",
"theano==1.0.3",
"tqdm==4.25.0",
"pandas==0.23.4",
"gensim==3.4.0",
"matplotlib",
"numba==0.39.0",
"numpy==1.15.1",
"treelib<=1.5.5",
"pymining"
]
)