-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (32 loc) · 1.33 KB
/
pyproject.toml
File metadata and controls
34 lines (32 loc) · 1.33 KB
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
[project]
name = "datetype"
version = "2025.11.30"
description = "A type wrapper for the standard library `datetime` that supplies stricter checks, such as making 'datetime' not substitutable for 'date', and separating out Naive and Aware datetimes into separate, mutually-incompatible types."
readme = "README.md"
requires-python = ">=3.7"
# This file is derived directly from typeshed's `datetime.pyi`, so it's the
# typeshed license.
license = {file = "LICENSE.txt"}
authors = [
{name = "Glyph", email = "glyph@twistedmatrix.com" } # Optional
]
urls = { Homepage = "https://github.com/glyph/DateType", Documentation = "https://datetype.readthedocs.io/en/latest/" }
classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
]
dependencies = [
"typing_extensions ; python_version < '3.8'"
]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0.0", "wheel"]