-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 817 Bytes
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 817 Bytes
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
[project]
name = "AetherOnePySocial"
version = "0.1.0"
description = "AetherOne Social Platform"
requires-python = ">=3.8"
dependencies = [
"fastapi",
"uvicorn",
"sqlalchemy",
"psycopg2-binary",
"pydantic",
"pydantic-settings",
"email-validator",
"passlib[bcrypt]",
"alembic",
"pytest",
"sqlalchemy-to-pydantic",
"python-jose[cryptography]",
"python-multipart",
"python-dotenv",
# Test dependencies included in main dependencies
"pytest",
"httpx",
"pytest-cov",
"pytest-order",
]
[project.optional-dependencies]
dev = [
"pytest",
"httpx",
"pytest-cov",
"pytest-order",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]