-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
53 lines (46 loc) · 1.18 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
[tool.poetry]
name = "rapidpro-python"
version = "2.15.0"
description = "Python client library for the RapidPro API"
authors = ["Nyaruka <code@nyaruka.com>"]
readme = "README.md"
license = "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',
]
packages = [
{ include = "temba_client" },
]
[tool.poetry.urls]
repository = "http://github.com/rapidpro/rapidpro-python"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.25.0"
iso8601 = "^0.1.13"
[tool.poetry.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>=1.0.0"]
build-backend = "poetry.core.masonry.api"