-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (32 loc) · 1.08 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
[tool.poetry]
name = "braspag-sdk"
version = "0.0.7"
description = "An unofficial Python SDK for Braspag"
authors = [
"Roman Sirokov <[email protected]>",
]
homepage = "https://github.com/romatallinn/braspagSdk-python"
repository = "https://github.com/romatallinn/braspagSdk-python"
readme = "README.md"
keywords = ["braspag", "sdk", "python", "cielo", "api", "ecommerce", "brazil", "payments"]
packages = [{include = "braspag_sdk"}]
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"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",
]
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
future = "^1.0.0"
requests = "^2.31.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"