-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.68 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (92 loc) · 2.68 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[project]
name = "pulsing"
version = "0.1.3"
description = "Pulsing: Backbone for distributed AI systems. Actor runtime with streaming, zero dependencies, and built-in discovery."
readme = "README.md"
authors = [
{ name = "Reiase", email = "reiase@gmail.com" }
]
license = "Apache-2.0"
requires-python = ">=3.10"
dependencies = [
"pydantic>=2.10.6",
"uvloop>=0.21.0",
"aiohttp>=3.9.0",
"hyperparameter>=0.5.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: POSIX :: Linux",
]
keywords = ["actor", "distributed", "async", "llm", "inference"]
[project.urls]
Homepage = "https://github.com/DeepLink-org/Pulsing"
Repository = "https://github.com/DeepLink-org/Pulsing"
Documentation = "https://github.com/DeepLink-org/Pulsing#readme"
Issues = "https://github.com/DeepLink-org/Pulsing/issues"
Changelog = "https://github.com/DeepLink-org/Pulsing/blob/main/CHANGELOG.md"
[project.optional-dependencies]
forge = []
tools = [] # deprecated alias for forge
agent = [
"anthropic>=0.40.0",
"openai>=1.0.0",
]
storage = [
"pylance",
"pyarrow>=22.0.0",
]
dev = [
"pytest>=8.0",
"pytest-asyncio>=0.23",
"pytest-cov>=5.0",
"ruff>=0.8",
"maturin>=1.0",
"pylance",
"pyarrow>=22.0.0",
]
[project.scripts]
pulsing = "pulsing.cli.__main__:main"
pulsing-agent = "pulsing.cli.agent.main:main"
[tool.maturin]
module-name = "pulsing._core"
manifest-path = "crates/pulsing-py/Cargo.toml"
python-packages = ["pulsing"]
python-source = "python"
features = ["extension-module"]
sdist-include = ["LICENSE", "README.md"]
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[tool.pytest.ini_options]
minversion = "8.0"
asyncio_mode = "auto"
testpaths = ["tests/python"]
markers = [
"forge: Forge test suite",
"forge_l0: registry / manifest gates",
"forge_l1: callable smoke (all 32 tools)",
"forge_l2: wire shape and side-effect checks",
"forge_l3: scenario and trace integration",
"forge_l4: actor / cluster integration (slow)",
]
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py310"
extend-exclude = ["docs"]
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501"]
[tool.codespell]
skip = "*.lock,target/*,*.whl"
ignore-words-list = "crate"