File: setup.cfg

package info (click to toggle)
python-ezsnmp 1.1.0-2.1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 11,280 kB
  • sloc: cpp: 3,746; python: 1,987; javascript: 1,110; makefile: 17; sh: 12
file content (48 lines) | stat: -rw-r--r-- 1,240 bytes parent folder | download | duplicates (2)
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
[metadata]
name = ezsnmp
version = 1.1.0
description = A blazingly fast and Pythonic SNMP library based on the official Net-SNMP bindings.
author = Carlos Santos
author_email = dose.lucky.sake@cloak.id
url = https://github.com/carlkidcrypto/ezsnmp
keywords =
    ezsnmp
    net-snmp
    easy snmp
    easysnmp
    snmp
    pysnmp
platforms =
    Linux 32/64
    MacOS 32/64
long_description_content_type = text/x-rst
long_description = file: README.rst
description_file = README.rst
license_files = LICENSE
classifiers =
    Development Status :: 4 - Beta
    Intended Audience :: Developers
    License :: OSI Approved :: BSD License
    Operating System :: OS Independent
    Programming Language :: Python :: 3.9
    Programming Language :: Python :: 3.10
    Programming Language :: Python :: 3.11
    Programming Language :: Python :: 3.12
    Programming Language :: Python :: 3.13
    Topic :: System :: Networking
    Topic :: System :: Networking :: Monitoring

[options]
packages = ezsnmp
python_requires = >=3.9,<3.14

[tool:pytest]
addopts = -s --cov=ezsnmp --cov-report=term-missing
testpaths = tests

[tool:black]
line-length = 100
target-version = ['py39', 'py310', 'py311', 'py312', 'py313']

[flake8]
max-line-length = 100