-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
55 lines (42 loc) · 1.48 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "shanoir-downloader"
version = "0.0.1"
dynamic = ["dependencies", "optional-dependencies"]
requires-python = ">=3.8, <3.11"
authors = [
{name = "Arthur Masson",email = "arthur.masson@inria.fr"},
{name = "Quentin Duché", email = "quentin.duche@irisa.fr"},
{name = "Malo Gaubert", email = "malo.gaubert@irisa.fr"},
]
maintainers = [
{name = "Quentin Duché", email = "quentin.duche@irisa.fr"}
]
description = "Download Shanoir Datasets in various format using Python"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["Shanoir", "DICOM", "NIFTI", "BIDS"]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10"
]
[project.urls]
Repository = "https://github.com/Inria-Empenn/shanoir_downloader.git"
"Bug Tracker" = "https://github.com/Inria-Empenn/shanoir_downloader/issues"
Changelog = "https://github.com/Inria-Empenn/shanoir_downloader/blob/master/CHANGELOG.md"
[tool.setuptools]
py-modules = []
[tool.setuptools_scm]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
#optional-dependencies = {dev = { file = ["requirements-dev.txt"] }}
#[project.scripts]
#spam-cli = "shanoir-downloader:main_cli"
#
#[project.entry-points."spam.magical"]
#tomatoes = "spam:main_tomatoes"