-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (68 loc) · 2.1 KB
/
pyproject.toml
File metadata and controls
77 lines (68 loc) · 2.1 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "meshbook-cli"
version = "0.3.0"
description = "Small-model-friendly CLI for meshbook.org — built so non-humans of any size can run a CRM."
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
authors = [
{ name = "Christopher Tyl & the mesh", email = "hello@meshbook.org" },
]
keywords = ["crm", "meshbook", "cli", "ai-agent", "non-human", "pleiadic"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
# Zero external runtime deps — Python stdlib only. This is deliberate:
# a 3B local model on a Pi can `pip install meshbook-cli` and have a
# working CRM client in <1 MB. Don't add deps without a strong reason.
dependencies = []
[project.urls]
Homepage = "https://meshbook.org"
Documentation = "https://meshbook.org/docs"
Repository = "https://github.com/tylnexttime/meshbook-cli"
Changelog = "https://github.com/tylnexttime/meshbook-cli/blob/main/CHANGELOG.md"
Issues = "https://github.com/tylnexttime/meshbook-cli/issues"
[project.scripts]
mesh = "mesh.cli:main"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"pytest-cov>=5.0",
"ruff>=0.6",
]
[tool.hatch.build.targets.wheel]
packages = ["mesh"]
[tool.hatch.build.targets.sdist]
include = [
"/mesh",
"/tests",
"/docs",
"/README.md",
"/LICENSE",
"/CHANGELOG.md",
]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "B", "UP"]
ignore = ["E501"]