-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (56 loc) · 1.53 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
[project]
name = "happy-migrations"
version = "0.0.5"
authors = [
{ name="Simon Piechutowski", email="[email protected]" },
]
description = "Hopefully no tears."
readme = "readme.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Intended Audience :: End Users/Desktop",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development",
"Topic :: Software Development :: Version Control",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.12",
"Typing :: Typed",
]
dependencies = [
"click~=8.1.7",
"textual",
]
[project.optional-dependencies]
dev = [
"ruff>=0.6.1",
"pytest~=8.3.2",
"pre-commit~=4.0.1",
"coverage~=7.6.8"
]
[project.urls]
Homepage = "https://github.com/Zimzozaur/happy-migrations"
Issues = "https://github.com/Zimzozaur/happy-migrations/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.sdist]
paths = ["src/happy_migrations"]
[tool.hatch.build.targets.wheel]
paths = ["src/happy_migrations"]
[project.scripts]
happy = "happy_migrations.__main__:happy"
[tool.ruff]
exclude = ["tests"]
lint.ignore = [
"D203",
"D213",
]
[tool.pytest.ini_options]
python_files = "test_*.py"