-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup.cfg
62 lines (56 loc) · 1.48 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
[metadata]
name = explainaboard
version = attr: version.__version__
description = Explainable Leaderboards for Natural Language Processing
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/neulab/ExplainaBoard
author = Pengfei Liu
license = MIT License
classifiers =
Intended Audience :: Developers
Topic :: Text Processing
Topic :: Scientific/Engineering :: Artificial Intelligence
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3 :: Only
[options]
packages = find:
include_package_data = True
install_requires =
datalabs>=0.4.9
eaas>=0.3.9
lexicalrichness!=0.1.6
matplotlib
nltk>=3.2
numpy
sacrebleu
scikit-learn
scipy~=1.9.2
seqeval
spacy
tqdm
wheel
pysqlite3
sqlparse>=0.4.2
[options.extras_require]
dev = pre-commit
[options.package_data]
explainaboard.resources = *.json
[options.entry_points]
console_scripts =
explainaboard = explainaboard.explainaboard_main:main
[flake8]
application-import-names = explainaboard
exclude = __pycache__, datasets
extend-ignore = E203, BLK100, W503, FI10, FI11, FI12, FI13, FI14, FI15, FI16, FI17, FI58
filename = ./explainaboard/*.py, ./setup.py
max-line-length = 88
[isort]
filter_files = true
force_sort_within_sections = true
multi_line_output = 3
order_by_type = false
profile = black
src_paths = explainaboard