-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
34 lines (30 loc) · 924 Bytes
/
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "actinia-python-client"
version = "0.4.5"
authors = [
{ name="Anika Weinmann", email="weinmann@mundialis.de" },
]
maintainers = [{name="mundialis GmbH & Co. KG", email="info@mundialis.de"}]
description = "Python client library for actinia requests."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"jinja2",
"requests",
"sphinx-material",
]
[project.urls]
"Homepage" = "https://github.com/actinia-org/actinia-python-client"
"Bug Tracker" = "https://github.com/actinia-org/actinia-python-client/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
actinia = ["templates/*.json"]