-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (41 loc) · 1.02 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
[project]
name = "SkiBiDi-ORM"
version = "0.1.35"
description = "Python ORM"
authors = [
{name = "xDepcio", email = "[email protected]"},
{name = "jedrzej-grabski", email = "[email protected]"},
{name = "mbienkowski", email = "[email protected]"}
]
dependencies = [
"typer>=0.11.0",
"colorama>=0.4.6",
"python-dotenv>=1.0.1",
"freezegun>=1.5.1",
"fastapi>=0.111.0",
"prompt-toolkit>=3.0.45",
"black>=24.4.2",
"psycopg2-binary>=2.9.9",
"pdoc3>=0.10.0",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm]
distribution = true
[tool.pdm.dev-dependencies]
dev = [
"pytest>=8.1.1",
"tox>=4.15.0",
]
[tool.pdm.scripts]
tests = "pytest --verbose --color=yes --ignore ./tmp"
[project.entry-points."console_scripts"]
skibidi-orm = "skibidi_orm.cli.run:main"
[tool.pytest.ini_options]
markers = [
"slow: mark test as slow (deselect with '-m \"not slow\"')",
]