-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
83 lines (69 loc) · 2.22 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "momo-psb"
version = "0.2.0"
description = "A Python SDK and CLI tool for integrating with the MTN MoMo API (Payment Service Bank)"
readme = "README.md"
authors = [
{ name = "Ifeanyi Nneji", email = "ifeanyinneji777@gmail.com" }
]
license = { text = "MIT License" }
homepage = "https://github.com/nneji123/momo-psb-api-sdk-python"
repository = "https://github.com/nneji123/momo-psb-api-sdk-python"
requires-python = ">=3.12"
keywords = ["MTN", "MoMo", "API", "SDK", "Python", "Payment", "Mobile Money"]
dependencies = [
"click>=8.1.8",
"requests>=2.25.1",
]
classifiers = [
# Development Status
"Development Status :: 4 - Beta",
# Intended Audience
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"Intended Audience :: Telecommunications Industry",
# License
"License :: OSI Approved :: MIT License",
# Programming Language
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
# Environment
"Environment :: Console",
"Environment :: Web Environment",
# Operating System
"Operating System :: OS Independent",
# Framework
"Framework :: AsyncIO",
"Framework :: Pytest",
# Topics
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Communications",
"Topic :: Office/Business",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Point-Of-Sale",
"Topic :: Security",
"Topic :: System :: Systems Administration",
"Topic :: Utilities",
# Natural Language
"Natural Language :: English",
# Typing
"Typing :: Typed",
]
[project.scripts]
momo-psb = "momo_psb.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v"
testpaths = [
"tests",
]