-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpyproject.toml
70 lines (62 loc) · 1.56 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
61
62
63
64
65
66
67
68
69
70
[project]
name = "aiocron"
version = "1.9.dev0"
description = "Crontabs for asyncio"
readme = "README.rst"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [
{name = "Gael Pasgrimaud", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: POSIX",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["crontab", "cron", "asyncio"]
dependencies = [
"cronsim>=2.6",
"python-dateutil>=2.9.0",
"tox>=4.21.1",
"tox-uv>=1.13.0",
"tzlocal>=5.2",
]
[project.urls]
Homepage = "https://github.com/gawel/aiocron/"
[project.optional-dependencies]
test = [
"coverage>=7.6.1",
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
]
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["aiocron"]
[tool.pytest.ini_options]
addopts = "--cov aiocron --cov-report term-missing"
testpaths = ["tests"]
filterwarnings = [
"ignore:.*U.*mode is deprecated:DeprecationWarning",
]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py{39,310,311,312}
isolated_build = True
[testenv]
runner = uv-venv-lock-runner
extras =
test
commands =
pytest
"""