forked from etingof/pysnmpcrypto
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (29 loc) · 1.05 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
[tool.poetry]
name = "pysnmpcrypto"
version = "0.1.0"
description = "Strong cryptography support for PySNMP (SNMP library for Python)"
authors = ["Ilya Etingof <[email protected]>", "LeXtudio Inc. <[email protected]>"]
license = "BSD-2-Clause"
repository = "https://github.com/lextudio/pysnmpcrypto"
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"
[tool.poetry.dependencies]
python = "^3.8"
cryptography = ">=43.0.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
[tool.poetry_bumpversion.file."pysnmpcrypto/__init__.py"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"