-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
31 lines (27 loc) · 950 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
[build-system]
requires = ["setuptools >= 64.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "egi_notebooks_accounting"
description = "EGI Notebooks accounting"
readme = "README.md"
authors = [
{name = "František Dvořák", email = "[email protected]"},
{name = "Enol Fernández", email = "[email protected]"},
]
dynamic = ["version", "dependencies"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Topic :: System :: Monitoring",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
]
[project.scripts]
egi-notebooks-accounting-dump = "egi_notebooks_accounting.pods:main"
egi-notebooks-eosc-accounting = "egi_notebooks_accounting.eosc:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]