-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
59 lines (56 loc) · 1.58 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
import pathlib
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="sciwing",
version="0.1.post9",
packages=find_packages(exclude=("tests",)),
url="https://github.com/abhinavkashyap/sciwing",
license="",
author="abhinav",
author_email="[email protected]",
description="Modern Scientific Document Processing Framework ",
entry_points={"console_scripts": ["sciwing=sciwing.commands.sciwing_group:main"]},
long_description=README,
long_description_content_type="text/markdown",
install_requires=[
"streamlit",
"torch==1.5.0",
"colorful==0.5.1",
"pytest==5.4.1",
"psutil==5.7.0",
"spacy==2.1.4",
"boto3",
"pandas",
"gensim==3.8.0",
"Deprecated==1.2.7",
"networkx==2.2",
"wasabi==0.2.2",
"logzero==1.5.0",
"flair==0.5",
"tqdm==4.32.1",
"allennlp==0.8.3",
"wandb==0.8.29",
"toml==0.10.0",
"numpy",
"pytorch_pretrained_bert==0.6.2",
"stop_words==2018.7.23",
"questionary==1.1.1",
"fastapi==0.65.1",
"scikit_learn==0.22.2",
"tensorboardX==2.2",
"werkzeug==1.0.0",
"overrides==3.1.0",
"s3transfer==0.4.0",
"requests",
"Sphinx==2.4.4",
"Jinja2",
"Flask==1.1.1",
"Flask-Cors==3.0.8",
"importlib-metadata==3.7.0",
"docutils==0.15",
],
)