-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
60 lines (54 loc) · 1.43 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=64",
"setuptools-scm[toml]>=8",
"wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "armonik_cli"
description = "Command-line tool to monitor and manage ArmoniK clusters."
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.8"
keywords = ["cloud", "HTC", "CLI", "ArmoniK", "Aneo"]
license = {text = "Apache v2.0 LICENSE"}
classifiers = [
"Development Status :: 4 - Beta", # see https://pypi.org/classifiers/
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Internet",
]
dependencies = [
"armonik",
"click",
"PyYAML",
"rich_click",
]
[project.urls]
"Homepage" = "https://github.com/aneoconsulting/ArmoniK.Api"
"Bug Tracker" = "https://github.com/aneoconsulting/ArmoniK/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where= ["src"]
exclude=['tests']
[project.optional-dependencies]
tests = [
'coverage',
'pytest',
'pytest-cov',
'pytest-mock',
'pytest-benchmark[histogram]',
]
dev = [
'mypy',
'ruff',
'types-PyYAML',
]
[project.scripts]
armonik = "armonik_cli.cli:cli"