-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 973 Bytes
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 973 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
43
44
45
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "soa-builder"
version = "0.1.0"
description = "Schedule of Activities normalization, expansion, and validation utilities"
readme = "README.md"
requires-python = ">=3.9"
authors = [ { name = "Pending Intent" } ]
license = { text = "Proprietary" }
dependencies = [
"pandas>=2.0.0",
"click>=8.1.0",
"fastapi>=0.110.0",
"uvicorn>=0.23.0",
"openpyxl>=3.1.0",
"reportlab>=4.0.0",
"requests>=2.31.0",
"python-dotenv>=1.0.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.9"
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"ruff>=0.5.0",
"black>=24.0.0",
"detect-secrets>=1.4.0",
"httpx>=0.27.0"
]
[project.scripts]
soa-builder = "soa_builder.cli:main"
soa-builder-web = "soa_builder.web.app:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
addopts = "-q"
pythonpath = ["src"]