-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 1.19 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
[project]
name = "textbelt-utils"
version = "0.3.2"
description = "A lightweight Python package for interacting with the Textbelt SMS API"
authors = [
{name = "Chris Bassano", email = "chrisbassano@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.8"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests>=2.32.0,<3.0.0",
"python-dotenv>=1.0.0",
]
[project.optional-dependencies]
async = ["httpx[http2]>=0.27.0"]
[tool.poetry.group.test.dependencies]
pytest = ">=8.0.0"
pytest-asyncio = ">=0.23.0"
respx = ">=0.20.2"
[tool.poetry.urls]
Homepage = "https://github.com/christo4b/textbelt-utils"
[tool.pytest.ini_options]
asyncio_mode = "strict"
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"