-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (30 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
33 lines (30 loc) · 1.04 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "onefuse"
version = "2026.1.1"
description = "OneFuse upstream provider package for Python"
readme = "README.rst"
license = { text = "Mozilla Public License 2.0 (MPL 2.0)" }
authors = [
{ name = "Cloudbolt Software, Inc.", email = "support@cloudbolt.io" }
]
requires-python = ">=3.9"
dependencies = ["requests", "urllib3", "packaging"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/CloudBoltSoftware/onefuse-python-module"
[tool.setuptools.packages.find]
where = ["."]
include = ["onefuse*"]