-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·47 lines (42 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
executable file
·47 lines (42 loc) · 1.26 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
42
43
44
45
46
47
[project]
name = "stateforward.hsm"
version = "0.1.1"
description = "Hierarchical State Machine implementation for Python with asyncio support"
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.13"
authors = [
{name = "Stateforward Team"},
]
keywords = ["state-machine", "hsm", "finite-state-machine", "hierarchical", "asyncio", "async"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Distributed Computing",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/stateforward/hsm"
Repository = "https://github.com/stateforward/hsm-python"
Documentation = "https://github.com/stateforward/hsm-python"
Issues = "https://github.com/stateforward/hsm-python/issues"
[tool.pytest.ini_options]
pythonpath = [
"."
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["hsm"]
[tool.uv]
dev-dependencies = [
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"scalene>=1.5.51",
"yappi>=1.6.10",
]