-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
98 lines (80 loc) · 1.88 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
87
88
89
90
91
92
93
94
95
96
97
98
[metadata]
name = voraus-template-updater
author = Felipe Peter
author_email = [email protected]
description = A CLI to keep cookiecutter-based projects up-to-date.
long_description = file:README.rst
long_description_content_type = text/x-rst
license = MIT
url = https://github.com/vorausrobotik/voraus-template-updater
[options]
python_requires = >=3.8
packages = find:
package_dir =
=src
install_requires =
importlib-metadata
rich
pydantic
PyGithub
GitPython
cruft
typer
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
update-template=voraus_template_updater._update_projects:app
[options.package_data]
* = py.typed
[options.extras_require]
dev =
%(tox)s
%(lint)s
%(test)s
%(doc)s
%(build)s
lint =
%(lint-template)s
# Add your linting dependencies below this line
types-tabulate
types-requests
test =
%(test-template)s
# Add your testing dependencies below this line.
# Dependencies that are imported in one of your files
# must also be added to the linting dependencies.
doc =
%(doc-template)s
# Add your documentation dependencies below this line
build =
%(build-template)s
# Add your build dependencies below this line
##########################################
# DO NOT CHANGE ANYTHING BELOW THIS LINE #
##########################################
tox =
tox==4.11.1
lint-template =
isort==5.12.0
black==23.7.0
mypy==1.5.1
pylint==2.17.5
pydocstyle[toml]==6.3.0
pytest==7.4.1
types-docutils
types-setuptools
jinja2==3.1.2
test-template =
pytest==7.4.1
pytest-randomly==3.15.0
pytest-cov==4.1.0
coverage[toml]==7.3.1
doc-template =
sphinx==7.2.6
sphinx_rtd_theme==1.3.0
sphinx-autodoc-typehints==1.24.0
pip-licenses==4.3.2
jinja2==3.1.2
build-template =
build[virtualenv]==1.0.3