-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "starfleet"
authors = [
{name = "Gemini", email = "[email protected]"},
{name = "Mike Grima", email = "[email protected]"},
]
version = "1.0.2"
dynamic = ["dependencies"]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"starfleet.configuration_files" = ["*.yaml"]
[tool.setuptools.dynamic]
dependencies = {file = ["src/requirements.txt"]}
[project.scripts]
starfleet = "starfleet.cli.entrypoint:cli"
[project.optional-dependencies]
tests = [
"pytest==8.1.1",
"pytest-cov==5.0.0",
"pytest-xdist==3.5.0",
"black==24.3.0",
"flake8==7.0.0",
"pylint==3.1.0",
"tox==4.14.2",
"moto==5.0.4",
"mkdocs==1.5.3",
"mkdocstrings[python]==0.24.1",
"mkdocs-gen-files==0.5.0",
"mkdocs-literate-nav==0.6.1",
"mkdocs-material==9.5.16",
"cfn-lint>=0.77",
"checkov>=2.3",
"setuptools==69.2.0"
]
[tool.pytest.ini_options]
log_cli = true
[tool.black]
line-length = 160