-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 669 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 669 Bytes
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
from setuptools import setup, find_packages
NAME = "DETECTING-SCIENTIFIC-CLAIM"
VERSION = "1.0.0"
DESCRIPTION = "Detecting Scientific Claims in Scientific literature."
URL = "https://github.com/titipata/detecting-scientific-claim"
EXCLUDE_LIST = [
"annotation_tool.*", "baseline.*", "experiments.*", "pubmed-rct.*",
"static_html.*", "arxivbot.*"
]
REQUIRED = [
"torch", "allennlp==0.9.0", "spacy", "fastText",
"pandas",
]
if __name__ == "__main__":
setup(
name=NAME,
version=VERSION,
packages=find_packages(exclude=EXCLUDE_LIST),
description=DESCRIPTION,
install_requires=REQUIRED,
url=URL,
)