forked from amisadmin/fastapi-scheduler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.33 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "fastapi_scheduler"
authors = [
{ name = "Atomi", email = "[email protected]" },
]
maintainers = [
{ name = "Atomi", email = "[email protected]" },
]
description = "FastAPI-Scheduler is a simple scheduled task management FastAPI extension based on APScheduler."
readme = "README.md"
requires-python = ">=3.6.1"
dynamic = ["version"]
keywords = [
"FastAPI-Amis-Admin",
"FastAPI-APScheduler",
"fastapi-scheduler",
"APScheduler",
]
classifiers = [
"Framework :: FastAPI",
"Environment :: Web Environment",
"Topic :: System :: Systems Administration",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"fastapi-amis-admin>=0.1.8,<0.2.0",
"APScheduler>=3.8.0",
]
[project.urls]
Source = "https://github.com/amisadmin/fastapi_scheduler"
FastAPI-Amis-Admin = "https://github.com/amisadmin/fastapi_amis_admin"
[project.optional-dependencies]
test = [
"pytest >=6.2.4,<7.0.0",
]