File: pyproject.toml

package info (click to toggle)
snimpy 1.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 620 kB
  • sloc: python: 4,191; makefile: 209
file content (49 lines) | stat: -rw-r--r-- 1,269 bytes parent folder | download
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
[build-system]
requires = ["setuptools >= 42.0.0", "setuptools_scm", "cffi >= 1.0.0"]
build-backend = "setuptools.build_meta"

[project]
name = "snimpy"
description = "interactive SNMP tool"
requires-python = ">= 3.9"
dynamic = ["version"]
readme = "README.rst"
license = "ISC"
authors = [
    { name = "Vincent Bernat", email = "bernat@luffy.cx" },
]
classifiers = [
    "Development Status :: 4 - Beta",
    "Environment :: Console",
    "Intended Audience :: System Administrators",
    "Operating System :: POSIX",
    "Programming Language :: Python :: 3",
    "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",
    "Programming Language :: Python :: 3.14",
    "Topic :: System :: Networking",
    "Topic :: Utilities",
    "Topic :: System :: Monitoring",
]
dependencies = [
    "cffi >= 1.0.0",
    "pysnmp >= 7",
    "pysnmpcrypto",
    "setuptools",
]

[project.scripts]
snimpy = "snimpy.main:interact"

[project.urls]
Homepage = "https://github.com/vincentbernat/snimpy"

[tool.setuptools]
packages = ["snimpy"]
zip-safe = false

[tool.setuptools_scm]
write_to = "snimpy/_version.py"