-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.1 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
59
60
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "accentdatabase"
readme = "README.md"
requires-python = ">=3.9"
authors = [
{ name = "Accent Design Group Ltd", email = "support@accentdesign.co.uk" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python",
]
dependencies = [
"pydantic>=2.0.1,<2.12.0",
"pydantic-settings>=2.0.1,<2.9.0",
"sqlalchemy>=2.0.0,<2.1.0",
]
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://github.com/accentdesign/accentdatabase"
[project.optional-dependencies]
test = [
"pytest",
"ruff",
]
alembic = [
"alembic",
]
[tool.hatch.build.targets.sdist]
include = [
"accentdatabase/"
]
exclude = [
"example/",
"tests/",
]
[tool.hatch.version]
path = "accentdatabase/__init__.py"
[tool.ruff]
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
[tool.ruff.lint.isort]
combine-as-imports = true