-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (39 loc) · 1.1 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
[tool.poetry]
name = "exotelpy"
version = "0.1.0"
license = "Apache-2.0"
description = "An unofficial Python wrapper for the Exotel API"
authors = ["Udit <[email protected]>"]
homepage = "https://noorahealth.github.io/exotel-python/"
repository = "https://github.com/NooraHealth/exotel-python/"
documentation = "https://noorahealth.github.io/exotel-python/"
keywords = ["exotel"]
readme = "README.md"
classifiers = [
"Operating System :: OS Independent",
"Topic :: Communications :: Telephony",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules"
]
packages = [
{ include = "exotelpy" }
]
[tool.poetry.dependencies]
python = ">=3.9, <3.13"
requests = "^2.28.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
isort = "^5.10.1"
autopep8 = "^1.7.0"
[tool.poetry.group.dev.dependencies]
ipython = "^8.13.1"
sphinx-reload = "^0.2.0"
sphinx-material = "^0.0.35"
sphinx-autodoc-typehints = "^1.23.0"
ipdb = "^0.13.13"
sphinx = "^7.0.1"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"