-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
30 lines (27 loc) · 964 Bytes
/
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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cronsim"
version = "2.7-dev"
authors = [{ name = "Pēteris Caune", email = "[email protected]" }]
description = "Cron expression parser and evaluator"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["cron", "cronjob", "crontab", "schedule"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
[project.urls]
Repository = "https://github.com/cuu508/cronsim.git"
Issues = "https://github.com/cuu508/cronsim/issues"
Changelog = "https://github.com/cuu508/cronsim/blob/main/CHANGELOG.md"
[tool.setuptools]
packages = ["cronsim"]