-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.11 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
[build-system]
requires = ["setuptools>=42", "setuptools_scm[toml]>=6.3"]
build-backend = "setuptools.build_meta"
[project]
name = "dtool-lookup-api"
description = "This package offers both synchronous and asynchronous implementations of a standardized Python API to communicate with dserver."
readme = "README.rst"
license = {file = "LICENSE"}
authors = [
{name = "Johannes L. Hörmann", email = "[email protected]"},
]
dynamic = ["version"]
dependencies = [
"asgiref",
"aiohttp",
"dtoolcore>=3.9.0",
"certifi",
"PyYAML",
]
[project.optional-dependencies]
test = [
"pytest",
"pytest-cov"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-spelling"
]
[project.urls]
Documentation = "https://dtool-lookup-api.readthedocs.io"
Repository = "https://github.com/livMatS/dtool-lookup-api"
Changelog = "https://github.com/livMatS/dtool-lookup-api/blob/main/CHANGELOG.rst"
[tool.setuptools_scm]
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"
write_to = "dtool_lookup_api/version.py"
[tool.setuptools]
packages = ["dtool_lookup_api"]