-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
44 lines (40 loc) · 1.19 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
[tool.poetry]
name = "rosrestpy"
version = "0.12.2"
description = "RouterOS v7 REST API python module"
authors = ["hexatester <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/hexatester/rosrestpy"
packages = [
{ include = "ros" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Networking",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
[tool.poetry.dependencies]
python = "^3.8"
attrs = ">=21.0.0,<=23.0.0"
cattrs = ">=21.0.0,<=23.0.0"
ujson = {version = "^5.5.0", optional = true}
requests = ">=2.31.0"
[tool.poetry.extras]
ujson = ["ujson"]
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
mypy = "^0.961"
black = "^22.6.0"
types-requests = "^2.28.0"
python-dotenv = "^0.20.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"