forked from meraki/dashboard-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (29 loc) · 752 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (29 loc) · 752 Bytes
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
[project]
name = "meraki"
version = "2.0.3"
description = "Meraki library for Python"
authors = [
{name = "Cisco Meraki",email = "api-feedback@meraki.net"}
]
license = "MIT"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
]
keywords = ["meraki", "dashboard", "cisco", "python"]
requires-python = ">=3.10"
dependencies = [
"requests (>=2.32.2,<3.0.0)",
"aiohttp (>=3.11.18,<4.0.0)",
]
[dependency-groups]
dev = [
"jinja2 (==3.1.6)",
"pytest (>=8.3.5,<10.0.0)",
]
[project.urls]
homepage = "https://github.com/meraki/dashboard-api-python"
repository = "https://github.com/meraki/dashboard-api-python"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"