-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (35 loc) · 980 Bytes
/
pyproject.toml
File metadata and controls
42 lines (35 loc) · 980 Bytes
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 = ["flit_scm"]
build-backend = "flit_scm:buildapi"
[project]
name = "dtool-dserver"
description = "dtool storage broker for accessing datasets through dserver"
readme = "README.rst"
license = {text = "MIT"}
authors = [
]
dynamic = ["version"]
requires-python = ">=3.8"
dependencies = [
"dtoolcore>=3.18.0",
"requests",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov",
]
[project.urls]
Repository = "https://github.com/livMatS/dtool-dserver"
[project.entry-points."dtool.storage_brokers"]
DServerStorageBroker = "dtool_dserver.storagebroker:DServerStorageBroker"
[tool.flit.module]
name = "dtool_dserver"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "dtool_dserver/version.py"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--cov=dtool_dserver --cov-report=term-missing"