-
Notifications
You must be signed in to change notification settings - Fork 39
/
setup.cfg
42 lines (38 loc) · 1020 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
[metadata]
name = python-pcapng
description = Library to read/write the pcap-ng format used by various packet sniffers.
long_description = file: README.rst
long_description_content_type = text/x-rst
url = https://github.com/rshk/python-pcapng
author = Samuele Santi
author_email = [email protected]
license = Apache-2.0
license_file = LICENSE
license_files =
LICENSE
classifiers =
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: Implementation :: CPython
[options]
packages = find:
python_requires = ~= 3.5
zip_safe = False
[options.extras_require]
dev =
flake8
isort
pre-commit
pytest>=5.4
pytest-cov
setuptools_scm[toml]
sphinx
sphinx-rtd-theme
[flake8]
max-line-length = 88
[pycodestyle]
max-line-length = 88