-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (67 loc) · 1.49 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python-compose"
version = "1.2.0"
description = "Python Compose, a tool for spinning up many long-running Python services simultaneously."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
authors = [
{ name = "David Rubinstein", email = "[email protected]" }
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"pydantic",
"pydantic-yaml",
"ruamel.yaml",
"typing-extensions",
"types-PyYAML"
]
[project.urls]
[project.optional-dependencies]
poetry = [
"poetry",
]
test = [
"python-compose[poetry]",
"pytest",
]
dev = [
"python-compose[test]",
"black",
"bump2version",
"hatch",
"isort",
"mypy",
"pre-commit",
"ruff",
]
[project.scripts]
python-compose = "python_compose.compose:main"
[tool.bumpversion]
file = "python_compose/__init__.py"
[bdist_wheel]
universal = 1
[tool.black]
line-length = 99
[tool.isort]
profile = "black"
[tool.mypy]
strict = true
disallow_subclassing_any = false
disallow_untyped_decorators = false
[tool.ruff]
line-length = 99