-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 1.01 KB
/
Copy pathpyproject.toml
File metadata and controls
42 lines (35 loc) · 1.01 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
[build-system]
requires = ["hatchling>=1.24"]
build-backend = "hatchling.build"
[project]
name = "python-core"
version = "0.1.0"
description = "Reusable Python core library for app scaffolding and integrations."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [{ name = "python-core maintainers" }]
dependencies = []
[project.optional-dependencies]
api = ["fastapi>=0.111", "uvicorn[standard]>=0.30"]
auth = ["argon2-cffi>=23.1.0", "PyJWT>=2.8.0"]
db = ["sqlalchemy>=2.0"]
excel = ["openpyxl>=3.1", "pandas>=2.2"]
redis = ["redis>=5.0"]
requests = ["requests>=2.32"]
security = ["cryptography>=42.0"]
dev = ["pytest>=8.2", "pytest-asyncio>=0.23", "ruff>=0.5", "mypy>=1.10"]
[tool.hatch.build.targets.wheel]
packages = ["python_core"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP", "SIM"]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["."]
[tool.mypy]
python_version = "3.11"
strict = true
warn_unused_configs = true