-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 925 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 925 Bytes
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "openclaw-crm"
version = "0.1.0"
description = "Lightweight CRM backed by Google Sheets with spider-network referral tracking"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{name = "Chinchilla AI", email = "engineering@chinchilla.ai"},
]
keywords = ["crm", "google-sheets", "pipeline", "referral-network"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Office/Business",
]
dependencies = [
"pyyaml>=6.0",
]
[project.optional-dependencies]
dev = ["pytest", "ruff"]
[project.scripts]
openclaw-crm = "openclaw_crm.cli:main"
[tool.hatch.build.targets.wheel]
packages = ["src/openclaw_crm"]
[tool.ruff]
line-length = 120
target-version = "py310"