File: pyproject.toml

package info (click to toggle)
prefixdate 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 120 kB
  • sloc: python: 266; makefile: 5
file content (32 lines) | stat: -rw-r--r-- 1,023 bytes parent folder | download
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "prefixdate"
version = "0.5.0"
description = "Parse and process date string of varied precision as prefixes in Python."
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Friedrich Lindenberg", email = "friedrich@pudo.org" }]
classifiers = [
    "Intended Audience :: Developers",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
]
keywords = ["date", "partial date", "iso8601", "rfc3339"]
requires-python = ">=3.9"

[project.urls]
Homepage = "http://github.com/pudo/prefixdate"

[project.optional-dependencies]
dev = ["mypy", "build", "wheel", "pytest", "pytest-cov", "bump2version"]

[tool.hatch.build.targets.wheel]
packages = ["prefixdate"]