-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 986 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "tai64"
version = "0.0.2dev"
authors = [
{name="Alex Willmer", email="alex@moreati.org.uk"},
]
description = "TAI64, TAI64N, TAI64NA implementations for Python"
readme = "README.md"
dependencies = [
"typing-extensions>=4.6; python_version < '3.12'",
]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: System :: Networking :: Time Synchronization",
"Typing :: Typed",
]
keywords = [
"libtai",
"tai64",
"tai64n",
"tai64na",
"taia",
"tai",
"time",
]
[tool.setuptools]
packages = [
"tai64",
]
[project.urls]
Homepage = "https://github.com/moreati/python-tai64"
Issues = "https://github.com/moreati/python-tai64/issues"