Skip to content

Commit 6a53d2c

Browse files
authored
Merge pull request #17 from CloudBoltSoftware/CMP-3571_upgrade_onefuse_module
Migrate to pyproject.toml and bump version to 2026.1.1
2 parents f6ff536 + 8c3d3a1 commit 6a53d2c

3 files changed

Lines changed: 34 additions & 28 deletions

File tree

onefuse/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
Enables the execution of OneFuse policies via Python
55
"""
66

7-
__version__ = "2023.1.1.1"
7+
__version__ = "2026.1.1"
88
__credits__ = 'Cloudbolt Software, Inc.'

pyproject.toml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[build-system]
2+
requires = ["setuptools", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[project]
6+
name = "onefuse"
7+
version = "2026.1.1"
8+
description = "OneFuse upstream provider package for Python"
9+
readme = "README.rst"
10+
license = { text = "Mozilla Public License 2.0 (MPL 2.0)" }
11+
authors = [
12+
{ name = "Cloudbolt Software, Inc.", email = "[email protected]" }
13+
]
14+
requires-python = ">=3.9"
15+
dependencies = ["requests", "urllib3", "packaging"]
16+
classifiers = [
17+
"Development Status :: 5 - Production/Stable",
18+
"Intended Audience :: Information Technology",
19+
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
20+
"Operating System :: OS Independent",
21+
"Programming Language :: Python :: 3",
22+
"Programming Language :: Python :: 3.9",
23+
"Programming Language :: Python :: 3.10",
24+
"Programming Language :: Python :: 3.11",
25+
"Programming Language :: Python :: 3.12",
26+
]
27+
28+
[project.urls]
29+
Homepage = "https://github.com/CloudBoltSoftware/onefuse-python-module"
30+
31+
[tool.setuptools.packages.find]
32+
where = ["."]
33+
include = ["onefuse*"]

setup.py

Lines changed: 0 additions & 27 deletions
This file was deleted.

0 commit comments

Comments
 (0)