-
Notifications
You must be signed in to change notification settings - Fork 35
/
pyproject.toml
62 lines (54 loc) · 2.06 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
61
62
# Copyright (C) 2023 Rafael Leira
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with this program; if not, see <http://www.gnu.org/licenses/>.
#
################################################################
[build-system]
requires = ["setuptools", "setuptools-scm[toml]"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["pySMART*"]
[tool.setuptools_scm]
write_to = "pySMART/version.py"
local_scheme = "no-local-version"
[project]
name = "pySMART"
authors = [
# Current maintainer & author
{ name = "Rafael Leira", email = "rafael.leira@naudit.es" },
# Original author
{ name = "Marc Herndon", email = "Herndon.MarcT@gmail.com" },
]
license = { text = 'GNU LGPLv2.1' }
description = 'Wrapper for smartctl (smartmontools)'
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
]
dependencies = ["chardet", 'humanfriendly']
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/truenas/py-SMART"
[project.optional-dependencies]
# Requirements only needed for development
dev = ['pytest', 'pytest-cov', 'coveralls', 'pdoc']