-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
108 lines (95 loc) · 2.59 KB
/
pyproject.toml
File metadata and controls
108 lines (95 loc) · 2.59 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "scheduler"
dynamic = ["readme", "version"]
authors = [
{ name = "Fabian Preiss", email = "fpreiss@digon.io" },
{ name = "Jendrik Potyka", email = "jpotyka@digon.io" },
]
maintainers = [
{ name = "Fabian Preiss", email = "fpreiss@digon.io" },
{ name = "Jendrik Potyka", email = "jpotyka@digon.io" },
]
description = "A simple in-process python scheduler library with asyncio, threading and timezone support."
license = "LGPL-3.0-only"
keywords = [
"scheduler",
"schedule",
"asyncio",
"threading",
"datetime",
"date",
"time",
"timedelta",
"timezone",
"timing",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Operating System :: OS Independent",
"Typing :: Typed",
]
requires-python = ">=3.10"
dependencies = ["typeguard>=3.0.0"]
[project.urls]
Repository = "https://gitlab.com/DigonIO/scheduler"
Documentation = "https://scheduler.digon.io"
Changelog = "https://scheduler.digon.io/changelog.html"
"Bug Tracker" = "https://gitlab.com/DigonIO/scheduler/-/issues"
[tool.setuptools.packages.find]
include = ["scheduler*"]
exclude = ["assets*"]
[tool.setuptools.dynamic]
version = { attr = "scheduler.__version__" }
readme = { file = "README.md", content-type = "text/markdown" }
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.isort]
py_version = 312
profile = "black"
[tool.pydocstyle]
convention = "numpy"
add-ignore = ["D105"]
[tool.mypy]
python_version = "3.10"
# strict = true
warn_return_any = true
warn_unused_configs = true
disallow_any_generics = true
disallow_subclassing_any = true
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.uv.workspace]
members = ["doc"]
[tool.uv.sources]
doc = { workspace = true }
[dependency-groups]
dev = [
"bandit==1.8.2",
"black==24.10.0",
"blacken-docs==1.19.1",
"coverage==7.6.10",
"isort==5.13.2",
"mistune==0.8.4",
"mypy==1.14.1",
"pre-commit==4.1.0",
"pydocstyle==6.3.0",
"pylint==3.3.3",
"pytest==8.3.4",
"pytest-asyncio==0.25.2",
"pytest-cov==6.0.0",
"typeguard==4.4.1",
]
doc = ["doc"]