-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
35 lines (30 loc) · 1.13 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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pysvc2"
version = "1.0.0"
description = "IBM Spectrum Virtualize Family Storage Python Client, Next gen"
readme = "readme.md"
authors = [{ name = "Peng Wang", email = "[email protected]" }, { name = "Uri Ziv", email = "[email protected]" }, { name = "Shlomit Neufeld", email = "[email protected]" }]
#license = "Apache License, Version 2.0"
license = { file = "LICENSE" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Environment :: Console',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Topic :: Software Development :: Libraries :: Python Modules',
]
keywords = ["IBM", "Spectrum Virtualize Family Storage"]
dependencies = [
"munch >= 2.3.2",
"paramiko >= 3.5.0",
]
requires-python = ">=3.9"
[project.urls]
Homepage = "https://github.com/IBM/pysvc2"