forked from python-scsi/cython-iscsi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
48 lines (43 loc) · 1021 Bytes
/
setup.cfg
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
# SPDX-FileCopyrightText: 2014 The cython-iscsi Authors
#
# SPDX-License-Identifier: LGPL-2.1-or-later
[metadata]
name = cython-iscsi
description = Cython-based wrapper for libiscsi.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/python-scsi/cython-iscsi
maintainer = Markus Rosjat
maintainer_email = [email protected]
license = LGPL-2.1+
license_files =
AUTHORS
LICENSES/*
classifiers =
Development Status :: 4 - Beta
License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Programming Language :: Python
Programming Language :: Python :: 3
keywords =
scsi
iscsi
[options]
packages = find:
[options.extras_require]
dev =
Cython
mypy
pkgconfig
pre-commit
pytest
setuptools>=42
setuptools_scm[toml]>=3.4
wheel
[options.package_data]
* =
*.pyx
*.pxd
[flake8]
max-line-length = 88
# Ignore long line errors, black takes care of them.
extend-ignore = E501