-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (49 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
58 lines (49 loc) · 1.18 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "gds-idea-app-kit"
version = "0.3.2"
description = "CLI tool for scaffolding and maintaining GDS IDEA web apps on AWS"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"click>=8.0",
"tomlkit>=0.12.0",
"boto3>=1.26.0",
]
[project.scripts]
idea-app = "gds_idea_app_kit.cli:cli"
idea_app = "gds_idea_app_kit.cli:cli"
[tool.hatch.build.targets.wheel]
packages = ["src/gds_idea_app_kit"]
[tool.hatch.build]
include = [
"src/gds_idea_app_kit/**/*.py",
"src/gds_idea_app_kit/templates/**",
]
[dependency-groups]
dev = [
"pytest>=8.0",
"ruff>=0.8.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
extend-exclude = ["src/gds_idea_app_kit/templates/**/*.template"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"W", # pycodestyle warnings
"F", # pyflakes
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
]
[tool.ruff.lint.isort]
known-first-party = ["gds_idea_app_kit"]
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = [
"integration: tests that require Docker (deselect with '-m \"not integration\"')",
]