-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
69 lines (63 loc) · 1.63 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
[metadata]
name = rdvc
description = Submit DVC experiments to SLURM clusters
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/exs-dmiketa/rdvc
author = Exscientia
project_urls =
Source = https://github.com/exs-dmiketa/rdvc
Issue tracker = https://github.com/exs-dmiketa/rdvc/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.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Typing :: Typed
[options]
packages = find_namespace:
package_dir =
=src
python_requires = >= 3.8
include_package_data = True
install_requires =
click!=8.1.0,!=8.1.4,!=8.1.5 # issues with mypy
click-option-group
dulwich
contextlib-chdir
dvc[s3]>=3.5.0
paramiko
types-paramiko
jinja2
types-Jinja2
tomli
tomli-w
typing-extensions
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
rdvc = rdvc.cli:cli
[options.extras_require]
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
%(tests)s
%(typing)s