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 = ["maturin>=1.5,<2.0"]
build-backend = "maturin"
[project]
name = "taskchampion-py"
version = "2.0.2"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Rust",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
authors = [
{name = "Illya Laifu", email="illyalaifu@gmail.com"},
{name = "Dustin J. Mitchell", email="dustin@v.igoro.us"},
]
license = {file = "LICENSE"}
readme = "README.md"
[project.urls]
homepage = "https://gothenburgbitfactory.org/taskchampion"
repository = "https://github.com/GothenburgBitFactory/taskchampion-py"
changelog = "https://github.com/GothenburgBitFactory/taskchampion-py/releases"
[tool.maturin]
features = ["pyo3/extension-module"]
[tool.poetry]
name = "taskchampion-py"
version = "0.1.0"
authors = ["illyalaifu <illyalaifu@gmail.com>"]
description = ""
package-mode = false
[tool.poetry.dependencies]
python = ">=3.9"
maturin = { extras = ["patchelf"], version = "^1.5.1" }
[tool.poetry.group.test.dependencies]
pytest = "^8.2.0"
mypy = "^1.10.0"
[tool.black]
line-length = 88
target-version = ['py39']
include = '\.pyi?$'
|