-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
82 lines (70 loc) · 1.65 KB
/
Copy pathpyproject.toml
File metadata and controls
82 lines (70 loc) · 1.65 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "sqlalchemy-unchained"
version = "0.14.0"
description = "Improved declarative SQLAlchemy models"
authors = [{ name = "Brian Cappello" }]
requires-python = ">=3.10,<4"
readme = "README.md"
license = "MIT"
dependencies = [
"alembic>=1.11.1,<2",
"sqlalchemy>=1.3,<2",
"py-meta-utils>=0.8.0,<0.9",
]
[project.urls]
Repository = "https://github.com/briancappello/sqlalchemy-unchained"
[project.scripts]
alembic = "sqlalchemy_unchained.cli:main"
[dependency-groups]
dev = [
"pytest>=7.4.0,<8",
"tox>=4.6.3,<5",
"black>=24.1.1,<25",
"mypy>=1.8.0,<2",
"sqlalchemy2-stubs>=0.0.2a38,<0.0.3",
"isort>=5.13.2,<6",
]
docs = [
"m2rr>=0.2.3,<0.3",
"sphinx-material>=0.0.35,<0.0.36",
"sphinx>=7.0.1,<8",
]
[tool.uv]
default-groups = [
"dev",
"docs",
]
[tool.hatch.build.targets.sdist]
include = ["sqlalchemy_unchained"]
[tool.hatch.build.targets.sdist.force-include]
"sqlalchemy_unchained/alembic_templates" = "sqlalchemy_unchained/alembic_templates"
[tool.hatch.build.targets.wheel]
include = ["sqlalchemy_unchained"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.mypy]
exclude = [
"docs-src",
"sqlalchemy_unchained/alembic_templates",
]
[[tool.mypy.overrides]]
module = [
"speaklater",
"sqlalchemy.ext.declarative.base",
]
ignore_missing_imports = true
[tool.black]
line-length = 90
target-version = ['py310']
preview = true
[tool.isort]
profile = "black"
include_trailing_comma = true
lines_between_types = 1
lines_after_imports = 2
multi_line_output = 3
sections = "FUTURE,STDLIB,THIRDPARTY,SQLALCHEMY,FIRSTPARTY,LOCALFOLDER"
known_sqlalchemy = [
"sqlalchemy",
]