forked from JonathonReinhart/scuba
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
59 lines (51 loc) · 1.55 KB
/
pyproject.toml
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
[project]
name = "scuba"
dynamic = ["version"]
authors = [
{name = "Jonathon Reinhart", email="[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"PyYAML",
# TODO(#242): Remove when Python 3.7 support is removed.
"importlib_metadata; python_version<'3.8'",
]
description = "Simplify use of Docker containers for building software"
keywords = ["docker"]
license = {file = "LICENSE.txt"}
readme = "README.md"
requires-python = ">=3.7"
[project.optional-dependencies]
argcomplete = ["argcomplete>=1.10.1"]
[project.scripts]
scuba = "scuba.__main__:main"
[project.urls]
documentation = "https://scuba.readthedocs.io/"
repository = "https://github.com/JonathonReinhart/scuba"
changelog = "https://github.com/JonathonReinhart/scuba/blob/main/CHANGELOG.md"
[build-system]
# Tells pip to install wheel before trying to install
# from an sdist or from Github.
requires = [
"wheel",
"setuptools >= 42.0.0",
# TODO(#242): Remove when Python 3.7 support is removed.
"importlib_metadata; python_version<'3.8'",
]
# mypy
[tool.mypy]
packages = ["scuba", "tests"]
warn_unused_configs = true
warn_return_any = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true