forked from lucafaggianelli/plombery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (51 loc) · 1.23 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
[project]
name = "plombery"
authors = [
{name = "Luca Faggianelli", email = "[email protected]"},
]
description = "Python task scheduler with a user-friendly web UI"
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"
keywords = ["pipeline", "task-scheduler", "apscheduler", "orchestrator", "web-ui", "fastapi", "pydantic"]
license = {text = "MIT"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"APScheduler==3.10.4",
"apprise==1.6.0",
"authlib==1.2.1",
"fastapi==0.104.0",
"httpx==0.25.0",
"itsdangerous==2.1.2",
"jinja2==3.1.2",
"pydantic==2.4.2",
"pydantic-settings==2.0.3",
"python-socketio>=5.0.0,<6.0.0",
"python-dotenv==1.0.0",
"SQLAlchemy==2.0.22",
"uvicorn==0.23.2",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"black==23.10.1",
"coverage==7.3.2",
"flake8==6.1.0",
"pytest==7.4.3",
"pytest_asyncio==0.21.1",
"pytest-env==1.1.0",
]
docs = [
"mkdocs-material>=9.1,<9.5",
]
[tool.setuptools.dynamic]
version = {attr="plombery._version.__version__"}
[tool.setuptools.packages.find]
where = ["src"]
# include = ["plombery*"]
# exclude = ["tests*"]
[tool.pytest.ini_options]
env = [
"DATABASE_URL=sqlite:///:memory:"
]