-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (26 loc) · 850 Bytes
/
pyproject.toml
File metadata and controls
31 lines (26 loc) · 850 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=61.0"]
[project]
name = "elisa_client_api"
description = "Enables sending of messages to the Elisa logbook"
version = "2.0.0"
readme = "docs/README.md"
requires-python = ">=3.6"
urls = { "homepage" = "https://github.com/DUNE-DAQ/elisa_client_api" }
dependencies = [
"lxml",
"requests",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
elisa_client_api = ["*"]
[project.scripts]
elisa_config = "elisa_client_api.scripts.elisa_config:main"
elisa_get = "elisa_client_api.scripts.elisa_get:main"
elisa_insert = "elisa_client_api.scripts.elisa_insert:main"
elisa_reply = "elisa_client_api.scripts.elisa_reply:main"
elisa_update = "elisa_client_api.scripts.elisa_update:main"