-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (55 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (55 loc) · 1.3 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
[project]
name = "copia-seed"
dynamic = ["version"]
description = "Interactive TUI database seeder"
readme = "README.md"
authors = [
{ name = "gitmobkab", email = "richmondaurel77@gmail.com" }
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10"
dependencies = [
"faker>=40.8.0",
"lark>=1.3.1",
"pydantic>=2.12.5",
"pymysql>=1.1.2",
"textual>=8.2.1",
"tomlkit>=0.15.0",
"typer>=0.24.1",
]
[project.optional-dependencies]
postgres = ["psycopg[binary]>=3.1"]
[project.scripts]
copia = "copia.cli.app:app"
[tool.hatch.build.targets.wheel]
packages = ["src/copia"]
include = [
"src/copia/example.copia.toml",
"src/copia/data/*"
]
[tool.hatch.version]
path = "src/copia/_version.py"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"cairosvg>=2.9.0",
"mkdocs-material>=9.7.6",
"pillow>=12.2.0",
"pytest>=9.0.2",
"pytest-cov>=7.1.0",
"ruff>=0.11.6",
"textual-dev>=1.8.0",
]
[tool.ruff]
src = ["src"]
line-length = 100
[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401", "F403"]