-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 1.16 KB
/
pyproject.toml
File metadata and controls
41 lines (34 loc) · 1.16 KB
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
[build-system]
requires = ["setuptools>=80", "setuptools-scm[simple]>=8"]
build-backend = "setuptools.build_meta"
[project]
requires-python = ">=3.10"
name = "cterasdk"
dynamic = ["version", "dependencies"]
authors = [
{name = "Saimon Michelson", email = "saimon@ctera.com"}
]
maintainers = [
{name = "CTERA Networks Ltd", email = "info@ctera.com"}
]
license = "Apache-2.0"
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
Homepage = "https://pypi.org/project/cterasdk/"
"Bug Tracker" = "https://github.com/ctera/ctera-python-sdk/issues"
Documentation = "https://ctera-python-sdk.readthedocs.io/en/latest/"
"Source Code" = "https://github.com/ctera/ctera-python-sdk"
[project.scripts]
"cterasdk.io.direct.download" = "cterasdk.cli.direct:download_object"
"cterasdk.io.dav" = "cterasdk.cli.dav:webdav"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools_scm]
version_file = "cterasdk/version.py"