-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
50 lines (44 loc) · 1.49 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
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pystorcli*"]
[tool.setuptools_scm]
write_to = "pystorcli2/version.py"
local_scheme = "no-local-version"
[project]
name = "PyStorCLI2"
authors = [
# Version 2 current maintainer & author
{ name = "Rafael Leira", email = "rafael.leira@naudit.es" },
# Original author
{ name = "Martin Dojcak", email = "martin.dojcak@lablabs.io" },
]
description = "StorCLI module wrapper 2"
readme = "README.md"
requires-python = ">=3.8"
keywords = ["storcli", "wrapper"]
license = { text = "BSD-3-Clause" }
classifiers = [
"Programming Language :: Python :: 3",
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Topic :: System :: Hardware :: Hardware Drivers',
'Topic :: System :: Installation/Setup',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
]
dependencies = []
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/Naudit/pystorcli2"
[project.scripts]
pystorcli-metrics = "pystorcli2.bin.metrics:main"
[project.optional-dependencies]
# Requirements only needed for development
dev = ['pytest', 'pytest-cov', 'coveralls', 'pdoc', 'mypy']