-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
86 lines (75 loc) · 1.96 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# Configuration file for creating the package.
#
# Thomas Guillod - Dartmouth College
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 78.1",
"setuptools_scm >= 8.2",
"wheel >= 0.45",
]
[tool.setuptools_scm]
write_to = "scisave/version.txt"
version_scheme = "guess-next-dev"
[project]
name = "scisave"
license = "BSD-2-Clause"
license-files = ["LICENSE.txt"]
description = "SciSave - Serialization for Scientific Data"
authors = [{name = "Thomas Guillod", email = "[email protected]"}]
maintainers = [{name = "Thomas Guillod", email = "[email protected]"}]
keywords = [
"Python",
"Serialization",
"Deserialization",
"JSON",
"YAML",
"MessagePack",
"Pickle",
"NumPy",
"Schema",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Natural Language :: English",
"Environment :: Console",
]
dependencies = [
"PyYAML >= 6.0",
"numpy >= 1.24",
"msgpack >= 1.1.0",
"jsonschema >= 4.23.0",
]
requires-python = ">=3.9"
dynamic = ["version"]
[project.optional-dependencies]
dev = ["pip >= 25.0", "build >= 1.2"]
test = ["ruff >= 0.11"]
[project.urls]
Homepage = "https://github.com/otvam/scisave"
Repository = "https://github.com/otvam/scisave"
Releases = "https://github.com/otvam/scisave/releases"
Issues = "https://github.com/otvam/scisave/issues"
Tags = "https://github.com/otvam/scisave/tags"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[tool.setuptools]
packages = ["scisave"]
include-package-data = true
[tool.setuptools.package-data]
scisave = ["*.txt"]
[tool.ruff]
indent-width = 4
line-length = 160
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "B", "UP"]
ignore = ["B009", "B010", "UP031", "F403"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"