-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (46 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
53 lines (46 loc) · 1.35 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
[project]
name = "ebrains-drive"
description = "Python client interface for EBRAINS Collaboratory Drive and Bucket storage"
readme = "README.md"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [
{name = "EBRAINS", email = "support@ebrains.eu"}
]
maintainers = [
{name = "EBRAINS", email = "support@ebrains.eu"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering"
]
dependencies = [
"requests",
"tqdm"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
"wheel"
]
[project.urls]
documentation = "https://github.com/HumanBrainProject/ebrains-storage/blob/master/doc.md"
repository = "https://github.com/HumanBrainProject/ebrains-storage"
download = "https://pypi.org/project/ebrains-drive/"
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "ebrains_drive/_version.py"
[tool.pytest.ini_options]
addopts = "-s -v --doctest-modules --ignore=build --ignore=dist --ignore=ebrains_drive.egg-info --ignore=setup.py --ignore=ci --cov=ebrains_drive --cov-report=term"
[tool.black]
line-length = 119
[tool.setuptools.packages.find]
where = ["."]
include = ["ebrains_drive*"]