-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (51 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
62 lines (51 loc) · 1.51 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
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
[build-system]
requires = [
"setuptools >=30.3.0",
"setuptools_scm",
]
build-backend = "setuptools.build_meta"
[project]
name = "datamaestro_image"
authors = [{name = "Benjamin Piwowarski", email = "benjamin@piwowarski.fr"}]
description = '"Image related datasets"'
license = {text = "GPL-3"}
keywords = ["dataset manager"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["readme", "version"]
requires-python = ">= 3.8"
dependencies = [
"datamaestro>=1.3.0",
]
[tool.setuptools_scm]
write_to = "src/datamaestro_image/version.py"
fallback_version = "0.0.0-dev"
[project.urls]
Homepage = "https://github.com/experimaestro/datamaestro_image"
[project.entry-points."datamaestro.repositories"]
image = "datamaestro_image:Repository"
[project.optional-dependencies]
test = ["tox"]
[tool.setuptools]
zip-safe = false
include-package-data = true
platforms = ["any"]
license-files = ["LICENSE"]
[tool.setuptools.dynamic]
readme = {file = ["README.md", "CHANGELOG.md"], content-type = "text/markdown"}
[tool.mypy]
python_version = "3.8"
warn_unused_ignores = true
[dependency-groups]
dev = [
"pytest>=8.3.5",
]