-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.61 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
[tool.poetry]
name = "fastcrud"
version = "0.15.5"
description = "FastCRUD is a Python package for FastAPI, offering robust async CRUD operations and flexible endpoint creation utilities."
authors = ["Igor Benav <igor.magalhaes.r@gmail.com>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/igorbenav/fastcrud"
include = ["LICENSE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"Framework :: FastAPI",
"Typing :: Typed",
]
keywords = ["fastapi", "crud", "async", "sqlalchemy", "pydantic"]
[tool.poetry.dependencies]
python = "^3.9"
SQLAlchemy = "^2.0.0"
pydantic = "^2.0.0"
SQLAlchemy-Utils = "^0.41.1"
fastapi = ">=0.100.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
aiosqlite = "^0.19.0"
greenlet = "^3.0.3"
httpx = "^0.26.0"
pytest-asyncio = "^0.23.3"
tox = "^4.12.1"
uvicorn = "^0.25.0"
sqlmodel = "^0.0.14"
mypy = "^1.9.0"
ruff = "^0.3.4"
coverage = "^7.4.4"
testcontainers = "^4.7.1"
asyncpg = "^0.30.0"
psycopg2-binary = "^2.9.10"
psycopg = "^3.2.1"
aiomysql = "^0.2.0"
cryptography = "^43.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"dialect(name): mark test to run only on specific SQL dialect",
]