-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.cfg
86 lines (80 loc) · 1.86 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
[metadata]
name = abodybuilder3
description = abodybuilder3
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/Exscientia/abodybuilder3
author = Henry Kenlay
project_urls =
Source = https://github.com/Exscientia/abodybuilder3
Issue tracker = https://github.com/Exscientia/abodybuilder3/issues
classifiers =
Development Status :: 1 - Planning
Intended Audience :: Science/Research
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.11
Typing :: Typed
[options]
packages = find_namespace:
package_dir =
=src
python_requires = >= 3.8
include_package_data = True
install_requires =
loguru
typer
click!=8.1.0
numpy==1.21.6
torch>=2.0.0
einops
dm-tree
ml_collections
tqdm
lightning>=2.0.4
dvc==2.58.2
dvc-s3==2.22.0
dvclive==2.11.0
python-box
tensorboard
tensorboardX
cloudpathlib
levenshtein
scipy==1.10.1
pandas==1.5.3
transformers
sentencepiece
accelerate
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
abodybuilder3 = abodybuilder3.cli:app
[options.extras_require]
docs =
jupytext>=1.11.2 # support for myst markdown notebooks
myst-nb
sphinx
sphinx-autodoc-typehints
sphinx-copybutton
sphinx-inline-tabs
sphinx-material
tests =
coverage[toml]
coverage-badge
pytest
typing =
mypy>1.4
types-setuptools
types-pyyaml
# 'dev' catch-all; useful for local pip install via `pip install -.e[dev]`
# Makes use of ConfigParser interpolation: https://docs.python.org/3/library/configparser.html#interpolation-of-values
dev =
nox
pyyaml
setuptools_scm<8
%(docs)s
%(tests)s
%(typing)s