-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (34 loc) · 900 Bytes
/
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
[project]
name = 'MerakiAsync'
version = '1.0.02'
description = 'An async python package for interacting with the Meraki Dashboard API.'
readme = 'README.md'
requires-python = '>=3.8'
authors = [
{ name = 'Zach Brewer'},
]
keywords = [
'meraki', 'python', 'automation', 'dashboard-api', 'meraki-api'
]
license = {file = 'LICENSE.md'}
dependencies = [
'meraki>=1.42.0',
'tqdm>=4.66.1'
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]
[project.optional-dependencies]
dev = [
'Jinja2>=3.1.3',
'yapf >=0.40.2',
]
[project.urls]
repository = 'https://github.com/zabrewer/MerakiAsync'
changelog = 'https://github.com/zabrewer/MerakiAsync/blob/main/CHANGELOG.md'
[build-system]
requires = ['setuptools']
build-backend = 'setuptools.build_meta'
[tool.setuptools]
packages = ['merakiasync', 'merakiasync.api', 'merakiasync.asynctasks']