-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
100 lines (87 loc) · 2.39 KB
/
Copy pathpyproject.toml
File metadata and controls
100 lines (87 loc) · 2.39 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "getitdone-sdk"
dynamic = ["version"]
description = "Official Python SDK for the GetItDone API — AI-native task management for people and agents."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
license-files = ["LICENSE"]
authors = [{ name = "Devino Solutions Inc.", email = "support@devino.ca" }]
keywords = [
"getitdone",
"tasks",
"task-management",
"productivity",
"api",
"sdk",
"webhooks",
"agents",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"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 :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = ["httpx>=0.27,<1", "pydantic>=2.7,<3"]
[project.urls]
Homepage = "https://nowgetitdone.com"
Documentation = "https://nowgetitdone.com/developers"
Repository = "https://github.com/DevinoSolutions/getitdone-python"
Issues = "https://github.com/DevinoSolutions/getitdone-python/issues"
[project.optional-dependencies]
dev = [
"pytest==9.1.1",
"pytest-asyncio==1.3.0",
"pytest-cov==7.1.0",
"respx==0.23.1",
"ruff==0.16.0",
"ty==0.0.63",
"datamodel-code-generator==0.28.5",
]
[tool.hatch.version]
path = "src/getitdone_py/__init__.py"
[tool.hatch.build.targets.wheel]
packages = ["src/getitdone_py"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra"
asyncio_mode = "auto"
[tool.coverage.run]
source = ["src/getitdone_py"]
omit = ["src/getitdone_py/models.py"]
[tool.ruff]
line-length = 100
target-version = "py310"
src = ["src", "tests"]
[tool.ruff.lint]
select = [
"E", # pycodestyle errors
"F", # pyflakes
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
]
[tool.ruff.format]
# models.py is generated by scripts/regenerate-models.sh; reformatting it would
# fight the `models-drift` CI gate.
exclude = ["src/getitdone_py/models.py"]
[tool.ruff.lint.per-file-ignores]
"src/getitdone_py/models.py" = ["E501", "UP"]
"tests/**" = ["B011"]
[tool.ty.environment]
python-version = "3.10"
[tool.ty.src]
include = ["src"]