|
| 1 | +[project] |
| 2 | +name = "django-future-tasks" |
| 3 | +description = "A library to create periodic, cron-like tasks or single tasks with a specified execution/start time and schedule it to run in the future." |
| 4 | +readme = "README.md" |
| 5 | +requires-python = ">=3.9" |
| 6 | +license = {text = "MIT"} |
| 7 | +authors = [ |
| 8 | + {name = "Armin Ster", email = "aster@anexia-it.com"}, |
| 9 | +] |
| 10 | +classifiers = [ |
| 11 | + "Development Status :: 5 - Production/Stable", |
| 12 | + "Framework :: Django", |
| 13 | + "Framework :: Django :: 4.2", |
| 14 | + "Framework :: Django :: 5.0", |
| 15 | + "Framework :: Django :: 5.1", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Operating System :: OS Independent", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.9", |
| 21 | + "Programming Language :: Python :: 3.10", |
| 22 | + "Programming Language :: Python :: 3.11", |
| 23 | + "Programming Language :: Python :: 3.12", |
| 24 | + "Programming Language :: Python :: 3.13", |
| 25 | +] |
| 26 | +dynamic = ["version"] |
| 27 | +dependencies = [ |
| 28 | + "croniter>=3.0.3,<3.1", |
| 29 | + "django-cronfield>=0.2.0,<0.3", |
| 30 | +] |
| 31 | + |
| 32 | +[project.optional-dependencies] |
| 33 | +dev = [ |
| 34 | + "django>=4.2,<5.2", |
| 35 | + "pre-commit>=4.3,<4.4", |
| 36 | + "pytest>=8.4,<8.5", |
| 37 | + "pytest-cov>=7.0,<7.1", |
| 38 | + "pytest-django>=4.11,<4.12", |
| 39 | + "time-machine>=2.15.0,<2.17.0", |
| 40 | +] |
| 41 | + |
| 42 | +[project.urls] |
| 43 | +Homepage = "https://github.com/anexia/django-future-tasks" |
| 44 | +Documentation = "https://github.com/anexia/django-future-tasks/blob/main/README.md" |
| 45 | +Repository = "https://github.com/anexia/django-future-tasks" |
| 46 | +Issues = "https://github.com/anexia/django-future-tasks/issues" |
| 47 | +Changelog = "https://github.com/anexia/django-future-tasks/blob/main/CHANGELOG.md" |
| 48 | + |
| 49 | +[tool.pytest.ini_options] |
| 50 | +DJANGO_SETTINGS_MODULE = "core.settings" |
| 51 | + |
| 52 | +[build-system] |
| 53 | +requires = ["setuptools"] |
| 54 | +build-backend = "setuptools.build_meta" |
0 commit comments