
- Made compatible with Python 3.8 (uses 3.10 typing from __future__) - Made uuid7.time() also verify variant, to more reliably reject invalid UUIDs - Changed repository names and links to uuid7-standard to match the package name
32 lines
978 B
TOML
32 lines
978 B
TOML
[project]
|
|
name = "uuid7-standard"
|
|
version = "1.1.0"
|
|
description = "UUIDv7 with the final standard. Not to be confused with the uuid7 package on pypi, based on a draft version that was very different."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = []
|
|
authors = [
|
|
{name = "Leo Vasanko"},
|
|
]
|
|
keywords = ["uuid", "uuid7", "timestamp", "ordering", "database", "primary-key"]
|
|
classifiers = [
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"License :: Public Domain",
|
|
"Programming Language :: Python :: 3",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Utilities",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.zi.fi/LeoVasanko/uuid7-standard"
|
|
Repository = "https://github.com/LeoVasanko/uuid7-standard"
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["uuid7.py"]
|