-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.cfg
78 lines (67 loc) · 1.59 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
###################################################
# Setup.py Configuration #
# Adapted from https://github.com/pybel/pybel.git #
###################################################
[metadata]
name = coronawhy_vt
version = 0.0.1-dev
description = CoronaWhy Vaccines and Therapeutics Task Force
long_description = file: README.md
long_description_content_type = text/markdown
[options]
install_requires =
jupyter
matplotlib
numpy
pandas
pytest
scikit-learn
scipy
scispacy
en_core_sci_lg @ https://s3-us-west-2.amazonaws.com/ai2-s2-scispacy/releases/v0.2.4/en_core_sci_lg-0.2.4.tar.gz
spacy
click
transformers==2.9.1
tensorflow
en_core_web_lg @ https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.2.5/en_core_web_lg-2.2.5.tar.gz
# Random options
zip_safe = false
include_package_data = True
python_requires = >=3.7
# Where is my code
packages = find:
package_dir =
= src
[options.packages.find]
where = src
[options.extras_require]
docs =
sphinx
sphinx-rtd-theme
sphinx-click
sphinx-autodoc-typehints
######################
# Doc8 Configuration #
# (doc8.ini) #
######################
[doc8]
max-line-length = 120
##########################
# Coverage Configuration #
# (.coveragerc) #
##########################
[coverage:run]
branch = True
source = coronawhy_vt
omit =
tests/*
docs/*
[coverage:paths]
source =
src/coronawhy_vt
.tox/*/lib/python*/site-packages/coronawhy_vt
[coverage:report]
show_missing = True
exclude_lines =
def __str__
def __repr__