-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 1.56 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
61
62
[project]
name = "easyswitch"
version = "0.1.2"
description = "Unified Python SDK for Mobile money "
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "AllDotPy", email = "hello@alldotpy.com" }]
maintainers = [
{ name = "#Einswilli", email = "einswilligoeh@email.com" },
{ name = "Julien ADENOVI", email = "adenovijulien@email.com" },
{ name = "Koffi Boris Gilbride WOGLO", email = "wokobogil@gmail.com" },
]
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"aiohttp>=3.11.18",
"phonenumbers>=9.0.5",
"pydantic>=2.11.4",
"python-dateutil>=2.9.0.post0",
"python-dotenv>=1.1.0",
"pyyaml>=6.0.2",
]
[project.urls]
Homepage = "https://github.com/AllDotPy/EasySwitch"
Repository = "https://github.com/AllDotPy/EasySwitch"
Documentation = "https://alldotpy.github.io/EasySwitch"
Tracker = "https://github.com/AllDotPy/EasySwitch/issues"
[project.optional-dependencies]
dev = [
"black",
"mypy",
"twine",
"uv",
"build",
"isort>=6.0.1",
"pytest>=8.4.0",
"pytest>=8.3.5",
"pytest-asyncio>=0.26.0",
"pytest-mock>=3.14.0",
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.14",
"mkdocs-static-i18n>=1.3.0",
"setuptools>=80.8.0",
]
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[dependency-groups]
dev = [
"mkdocs>=1.6.1",
"mkdocs-material>=9.6.14",
]
#requires = ["uv"]
#build-backend = "uv.build"