-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (27 loc) · 1004 Bytes
/
pyproject.toml
File metadata and controls
29 lines (27 loc) · 1004 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "saveable-objects"
version = "1.1.8"
authors = [
{ name="Christopher_K._Long", email="ckl45@cam.ac.uk" },
]
maintainers = [
{ name="Christopher_K._Long", email="ckl45@cam.ac.uk" },
]
description = "A python package for checkpointing, saving, and loading objects."
keywords = ["save", "saving", "saveable", "object", "checkpoint", "checkpointing", "load", "loading"]
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
[project.urls]
Homepage = "https://github.com/Christopher-K-Long/saveable-objects"
Documentation = "https://saveable-objects.readthedocs.io/"
Issues = "https://github.com/Christopher-K-Long/saveable-objects/issues"
Changelog = "https://github.com/Christopher-K-Long/saveable-objects/blob/main/ChangeLog.md"