-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (38 loc) · 1.2 KB
/
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
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
with open("README.md", "r") as readme_file:
README = readme_file.read()
requirements = [
"retry>=0.9.2",
"tqdm>=4.45.0",
"nltk>=3.2.5",
"textblob>=0.15.3",
"langdetect>=1.0.8",
"pandas>=1.0.3",
"numpy>=1.18.2",
"joblib>=0.14.1",
"python-dateutil>=2.8.1",
"scikit-learn>=0.22.2",
"gensim>=3.6.0",
"dataclasses>=0.7",
"language-detector>=5.0.2",
"networkx>=2.4"
]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.6.9",
"Operating System :: OS Independent",
"Topic :: Covid 19 :: NLP :: Utilities"
]
setup(name="c19",
version="0.0.1",
author="Atos Kaggle Crew",
author_email="[email protected]",
description="Utilities lib for the following Kaggle notebook.",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/MrMimic/covid-19-kaggle",
packages=find_packages(where="src/main/python/"),
package_dir={"": "src/main/python/"},
python_requires=">=3.6",
install_requires=requirements,
classifiers=classifiers)