forked from SpectraLogic/ds3_python3_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 716 Bytes
/
pyproject.toml
File metadata and controls
28 lines (24 loc) · 716 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ds3-sdk"
version = "5.8.2"
description = "Python3 SDK for Spectra DS3"
readme = "README.md"
requires-python = ">=3.6"
license = { text = "Apache License 2.0" }
authors = [
{ name = "Spectra Logic Corporation", email = "developer@spectralogic.com" }
]
urls = { Homepage = "https://github.com/SpectraLogic/ds3_python3_sdk" }
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = []
[tool.setuptools.packages.find]
include = ["ds3*"]
[tool.setuptools]
license-files = ["LICENSE.md"]