forked from ctomkow/swITch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
36 lines (32 loc) · 942 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/swITch/version.py"
[project]
name = "swITch"
dynamic = ['version']
authors = [
{name = 'Craig Tomkow', email = '[email protected]'},
]
description = 'Network Device Automation'
requires-python = '>=3.6'
license = {file = 'LICENSE.txt'}
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
]
dependencies = [
'netmiko==3.4.0',
'paramiko==2.8.1',
]
[project.scripts]
swITch = 'swITch.swITch:entrypoint'
[tool.setuptools.dynamic]
readme = {file = ['README.md'], content-type = 'text/markdown'}
version = {attr = 'swITch.version.py.__version__'}