-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
60 lines (56 loc) · 1.37 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
56
57
58
59
60
[tool.poetry]
name = "regta"
version = "0.3.0"
description = "Production-ready scheduler with async, multithreading and multiprocessing support."
authors = ["Vladimir Alinsky <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://regta.alinsky.tech"
repository = "https://github.com/SKY-ALIN/regta"
keywords = [
"scheduler",
"multithreading",
"multiprocessing",
"async",
"jobs",
"tasks",
"cron",
"periodic",
"regular",
]
include = [
"LICENSE",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Environment :: Console",
"Framework :: AsyncIO",
]
[tool.poetry.dependencies]
python = "^3.7.2"
click = "^8.1.3"
Jinja2 = "^3.1.2"
asyncio = "^3.4.3"
regta-period = "^0.2.0"
[tool.poetry.dev-dependencies]
pytest = "^7.4.4"
flake8 = "^5.0.4"
pylint = "^2.17.7"
Sphinx = "^4"
furo = "^2022.9.29"
m2r2 = "^0.3.2"
sphinx-copybutton = "^0.5.2"
no-optional = "^0.4.0"
isort = "^5.11.5"
mypy = "^1.4"
[tool.poetry.scripts]
regta = "regta.console:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"