-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (51 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
60 lines (51 loc) · 1.32 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
[project]
name = "rapidpro-python"
version = "2.22.0"
description = "Python client library for the RapidPro API"
authors = [{ name = "Nyaruka", email = "code@nyaruka.com" }]
requires-python = ">=3.12"
readme = "README.md"
license = { text = "BSD-4-Clause" }
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"requests >= 2.32.0",
"iso8601 >= 0.1.13",
]
[project.urls]
Repository = "http://github.com/rapidpro/rapidpro-python"
[dependency-groups]
dev = [
"coverage>=5.3,<6",
"ruff>=0.14.0,<0.15",
"isort>=5.10.1,<6",
"black>=24.3.0,<25",
"nose2>=0.12.0,<0.13",
]
[tool.hatch.build.targets.sdist]
include = ["temba_client"]
[tool.hatch.build.targets.wheel]
include = ["temba_client"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.black]
line-length = 119
[tool.ruff]
line-length = 120
fix = true
[tool.ruff.lint]
select = ["E", "F", "W"]
ignore = ["E501", "F405"]
[tool.isort]
multi_line_output = 3
force_grid_wrap = 0
line_length = 119
include_trailing_comma = true
combine_as_imports = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER"]