forked from etingof/pysmi
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
66 lines (57 loc) · 1.77 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
63
64
65
66
[tool.poetry]
name = "pysmi"
version = "1.5.9"
description = "A pure-Python implementation of SNMP/SMI MIB parsing and conversion library."
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/lextudio/pysmi"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Communications",
"Topic :: Software Development :: Libraries :: Python Modules",
]
readme = "README.md"
packages = [
{ include = "pysmi" },
]
include = ["docs", "tests", "examples", "scripts"]
[tool.poetry.dependencies]
python = "^3.9"
ply = "^3.11"
Jinja2 = "^3.1.3"
requests = "^2.26.0"
[tool.poetry.group.dev.dependencies]
pysnmp = "^7.1.10"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
black = "=22.3.0"
pre-commit = "2.21.0"
isort = "^5.10.1"
sphinx-sitemap-lextudio = "^2.5.2"
sphinx = "^7.0.0"
furo = "^2023.1.1"
sphinx-copybutton = "^0.5.2"
doc8 = "^1.1.1"
sphinx-notfound-page = "^1.0.0"
flake8 = "^5.0.4"
flake8-import-order = "^0.18.2"
flake8-docstrings = "^1.7.0"
flake8-rst-docstrings = "^0.3.0"
pep8-naming = "^0.14.1"
[tool.poetry_bumpversion.file."pysmi/__init__.py"]
[tool.poetry_bumpversion.file."docs/source/conf.py"]
search = "release = \"{current_version}\""
replace = "release = \"{new_version}\""
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
mibcopy = "pysmi.scripts.mibcopy:start"
mibdump = "pysmi.scripts.mibdump:start"