-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (28 loc) · 854 Bytes
/
pyproject.toml
File metadata and controls
31 lines (28 loc) · 854 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
[build-system]
#requires = ["hatchling"]
#build-backend = "hatchling.build"
build-backend = "setuptools.build_meta"
requires = ["setuptools"]
[project]
name = "pyoceanstor_upc"
version = "0.1"
authors = [
{ name="Guillermo Miranda", email="guillermo.miranda@upc.edu" },
{ name="Toni Comerma" }
]
description = "A limited OceanStor Dorado API implementation"
readme = "README.md"
requires-python = ">=3.4"
license = {file = "LICENSE.md", content-type = "text/markdown"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3.0 or later (LGPLv3.0+)",
"Operating System :: OS Independent",
]
dependencies = [
"PyYAML>=5.1.0",
"humanfriendly>=6.0"
]
[project.urls]
Homepage = "https://github.com/UPC/PyOceanStor"
Issues = "https://github.com/UPC/PyOceanStor/issues"