-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.21 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "cron-converter"
version = "1.2.1"
authors = [
{ name="Andrea Salvatori", email="[email protected] " },
]
description = "Cron string parser and scheduler for Python"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"python-dateutil"
]
[project.optional-dependencies]
test = ["python-dateutil"]
mypy = [
"mypy",
"types-python-dateutil"
]
[project.urls]
Homepage = "https://github.com/Sonic0/cron-converter"
Issues = "https://github.com/Sonic0/cron-converter/issues"
[tool.isort]
profile = "black"
src_paths = ["cron_converter", "tests"]
multi_line_output = 3
[tool.mypy]
ignore_missing_imports = true
show_error_codes = true
exclude = ['build/*', 'docs/*', 'examples/*', 'tests/*']