-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.cfg
90 lines (85 loc) · 2.37 KB
/
setup.cfg
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[metadata]
name = radtext
# Versions should comply with PEP440. For a discussion on single-sourcing
# the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version = 1.0.dev8
# Author details
author = Yifan Peng
author_email = yip4002@med.cornell.edu
description = RadText is a high-performance Python Radiology Text Analysis System.
long_description = file: README.md
long_description_content_type = text/markdown
# The project's main homepage.
url = https://github.com/bionlplab/radtext'
license = MIT License
keywords = radiology-report, text-mining, NLP
# See https://pypi.org/classifiers/
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: MIT License
Operating System :: POSIX :: Linux
Topic :: Text Processing
Topic :: Software Development
Topic :: Scientific/Engineering :: Artificial Intelligence
Topic :: Scientific/Engineering :: Information Analysis
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
python_requires = >=3.6, <3.9
package_dir=
=src
packages = find:
install_requires =
bioc
bllipparser
docopt
Cython
intervaltree
JPype1==0.6.3
medspacy
networkx
nltk
numpy
pandas
ply
PyStanfordDependencies
PyYAML
spacy
stanza
tqdm
xlrd
cachetools
openpyxl
[options.packages.find]
where=src
exclude =
tests.*
tests
[options.package_data]
* =
resources/*
resources/*/*
pphilter/*
pphilter/*/*
pphilter/*/*/*
[options.extras_require]
rest = docutils>=0.15.2
[options.entry_points]
console_scripts =
radtext-download = radtext.cmd.download:main
radtext-csv2bioc = radtext.cmd.csv2bioc:main
radtext-cdm2bioc = radtext.cmd.cdm2bioc:main
radtext-bioc2cdm = radtext.cmd.bioc2cdm:main
radtext-deid = radtext.cmd.deid:main
radtext-secsplit = radtext.cmd.split_section:main
radtext-preprocess = radtext.cmd.preprocess:main
radtext-ssplit = radtext.cmd.ssplit:main
radtext-parse = radtext.cmd.parse:main
radtext-tree2dep = radtext.cmd.tree2dep:main
radtext-ner = radtext.cmd.ner:main
radtext-neg = radtext.cmd.neg:main
radtext-collect = radtext.cmd.collect_neg_labels:main