petrus-engine 0.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: petrus-engine
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Petrus: an embedded Petri net workflow engine for Python (placeholder release).
|
|
5
|
+
Author-email: Henrique Bastos <henrique@bastos.net>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Developers
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
13
|
+
Requires-Python: >=3.12
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# Petrus: an embedded Petri net workflow engine for Python.
|
|
17
|
+
|
|
18
|
+
This is a placeholder release to reserve the `petrus-engine` name.
|
|
19
|
+
The first real release is coming soon.
|
|
20
|
+
|
|
21
|
+
## Authors
|
|
22
|
+
|
|
23
|
+
- Henrique Bastos <henrique@bastos.net>
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "petrus-engine"
|
|
3
|
+
version = "0.0.0"
|
|
4
|
+
description = "Petrus: an embedded Petri net workflow engine for Python (placeholder release)."
|
|
5
|
+
license = "MIT"
|
|
6
|
+
readme = "README.md"
|
|
7
|
+
authors = [
|
|
8
|
+
{ name = "Henrique Bastos", email = "henrique@bastos.net" },
|
|
9
|
+
]
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
classifiers = [
|
|
12
|
+
"Development Status :: 1 - Planning",
|
|
13
|
+
"Intended Audience :: Developers",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[build-system]
|
|
21
|
+
requires = ["hatchling"]
|
|
22
|
+
build-backend = "hatchling.build"
|
|
23
|
+
|
|
24
|
+
[tool.hatch.build.targets.wheel]
|
|
25
|
+
packages = ["src/petrus"]
|
|
File without changes
|