-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.23 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
[project]
# https://packaging.python.org/en/latest/tutorials/packaging-projects/#configuring-metadata
name = "cro3n"
dynamic = ["version"]
requires-python = ">=3.7"
classifiers = [
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
]
authors = [
{ name="straydragon", email="[email protected]" },
]
description = "Another one **cron expression** utils package for python"
readme = "README.md"
license = { file="LICENSE" }
[project.urls]
"Homepage" = "https://github.com/straydragon/cro3n"
"Bug Tracker" = "https://github.com/straydragon/cro3n/issues"
[build-system]
# https://maturin.rs/distribution.html
# https://packaging.python.org/en/latest/tutorials/packaging-projects/#creating-pyproject-toml
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[tool.maturin]
sdist-include = [
"Cargo.lock",
]