-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.03 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mnists"
authors = [
{ name="Piotr Czarnik", email="ptr.czarnik@gmail.com" },
]
description = "MNISTs: All MNIST-like datasets in one package"
dynamic = ["version"]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.22",
"numpy>=1.23.2; python_version>='3.11'",
"numpy>=1.26.0; python_version>='3.12'",
]
classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/pczarnik/mnists"
[project.optional-dependencies]
tqdm = [
"tqdm",
]
[tool.setuptools.dynamic]
version = {attr = "mnists.__version__"}
[tool.setuptools.packages.find]
include = ["mnists"]