-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (40 loc) · 1.25 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "NORA-Datasets"
description = "A novel library for datasets for machine learning research"
readme = "README.md"
authors = [
{ name = "Per-Arne Andersen", email = "[email protected]" },
]
maintainers = [
{ name = "Per-Arne Andersen", email = "[email protected]" },
]
license-files = { paths = ["LICENSE"] }
requires-python = ">=3.7"
dependencies = [
"numpy>=1.23.1",
"ipfshttpclient>=0.7.0",
"tomli-w==1.0.0",
"tomli==2.0.1",
"httpx==0.23.0"
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/cair/datasets"
Documentation = "https://github.com/cair/datasets#readme"
"Bug Tracker" = "https://github.com/cair/datasets/issues"
[tool.hatch]
version.source = "vcs"
build.hooks.vcs.version-file = "src/nora_datasets/version.py"