-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (45 loc) · 1.43 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
48
[project]
name = "decimaldate"
version = "0.3.1"
description = "A decimal date utility to handle integer dates on the form `yyyymmdd`."
authors = [
{ name = "Torben Jakobsen", email = "torben.jakobsen@icloud.com" }
]
license = {file = "LICENSE"}
readme = {file = "README_pypi.rst", content-type = "text/x-rst"}
keywords = [
"decimal",
"date",
"decimaldate",
"utility"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
]
requires-python = ">= 3.11"
dependencies = []
[project.urls]
GitHub = "https://github.com/TorbenJakobsen/decimaldate"
Documentation = "https://decimaldate.readthedocs.io/en/latest/"
PyPI = "https://pypi.org/project/decimaldate"
Changelog = "https://decimaldate.readthedocs.io/en/latest/changelog.html"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]