-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.cfg
46 lines (42 loc) · 1.01 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
[metadata]
name = deepfocus
description = Offcial Python implementation of "FOCUS: Effective Embedding Initialization for Monolingual Specialization of Multilingual Models" published at EMNLP 2023.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/konstantinjdobler/focus
project_urls =
Bug Tracker = https://github.com/konstantinjdobler/focus/issues
Changelog = https://github.com/konstantinjdobler/focus/releases
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: Apache Software License
Intended Audience :: Developers
[options]
package_dir =
= src
packages = find:
python_requires = >=3.8
install_requires =
torch
transformers>=4.0.0
datasets
entmax
fasttext-wheel
fastdist
requests
numpy
numba
scipy
tqdm
print-on-steroids
zip_safe = True
[options.extras_require]
dev =
black
ruff
pytest
pytest_mock
[options.packages.find]
where = src
exclude =
tests