-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpyproject.toml
59 lines (50 loc) · 1.25 KB
/
pyproject.toml
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
[project]
name = "rapidpro-python"
version = "2.16.0"
description = "Python client library for the RapidPro API"
authors = [
{"name" = "Nyaruka", "email" = "code@nyaruka.com"}
]
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',
]
requires-python = ">=3.9"
dependencies = [
"requests >= 2.32.0",
"iso8601 >= 0.1.13",
]
[tool.poetry]
packages = [
{ include = "temba_client" },
]
[tool.poetry.urls]
"Repository" = "http://github.com/rapidpro/rapidpro-python"
[tool.poetry.group.dev.dependencies]
coverage = "^5.3"
ruff = "^0.0.171"
isort = "^5.10.1"
black = "^24.3.0"
nose2 = "^0.12.0"
[tool.black]
line-length = 119
[tool.ruff]
line-length = 120
select = ["E", "F", "W"]
ignore = ["E501", "F405"]
fix = true
[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"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"