-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
62 lines (57 loc) · 1.78 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
[tool.poetry]
name = "python-mpesa-sdk"
version = "0.0.0"
description = "Python SDK for Safaricom's Daraja API"
authors = ["mango-habanero <[email protected]>"]
license = "WTFPL"
readme = "README.md"
packages = [{include = "mpesa_sdk"}]
include = ["pyproject.toml", "LICENSE.md", "README.md", "CHANGELOG.md"]
repository = "https://github.com/PhilipWafula/python-mpesa-sdk"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: Public Domain",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development",
"Topic :: Utilities",
"Typing :: Typed",
]
maintainers = ["mango-habanero <[email protected]>"]
keywords = ["mpesa", "sdk", "daraja", "python"]
[tool.semantic_release]
branch = "main"
build_command = "poetry build"
changelog_file = "CHANGELOG.md"
dist_path = "dist/"
patch_without_tag = true
remove_dist = false
upload_to_pypi = false
upload_to_release = true
version_tag_prefix = "v"
version_variable = "pyproject.toml:version"
[tool.semantic_release.changelog]
sections = ["feature", "fix", "breaking", "performance", "refactor", "docs", "ci", "test", "other"]
[tool.poetry.dependencies]
python = "^3.10"
pytz = "2023.3"
requests = "2.31.0"
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
flake8 = "^6.0.0"
pytest = "7.0.1"
pytest-cov = "4.1.0"
python-dotenv = "^1.0.0"
pytest-mock = "^3.10.0"
requests-mock = "^1.10.0"
tox = "^4.6.0"
pylint = "^2.17.4"
pytest-sugar = "^0.9.7"
python-semantic-release = "^7.34.4"
[build-system]
requires = ["poetry-core>=1.1.0"]
build-backend = "poetry.core.masonry.api"