Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 40 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,47 @@
[tool.poetry]
authors = ["Multisafepay <[email protected]>"]
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]

[project]
name = "multisafepay"
version = "1.0.0rc1"
description = "Multisafepay API wrapper"
authors = [
{ name = "Multisafepay", email = "[email protected]" },
]
license = "OSL-3.0"
readme = "README.md"
repository = "https://github.com/MultiSafepay/python-sdk"
homepage = "https://multisafepay.com"
requires-python = ">=3.8"

classifiers = []
packages = [{include = "src"}]

maintainers = [
{ name = "Daniel Civit", email = "[email protected]" },
{ name = "Marco Gil", email = "[email protected]" }
]
license-files = ["LICENSE.md", "DISCLAIMER.md"]


[tool.poetry]
name = "multisafepay"
version = "1.0.0rc1"
description = "Multisafepay API wrapper"
authors = ["Multisafepay <[email protected]>"]
license = "OSL-3.0"
readme = "README.md"
repository = "https://github.com/MultiSafepay/python-sdk"
homepage = "https://multisafepay.com"

classifiers = []
packages = [{include = "src"}]

maintainers = [
"Daniel Civit <[email protected]>",
"Marco Gil <[email protected]>"
]

[tool.poetry.dependencies]
python = ">=3.8,<3.14"
Expand All @@ -24,10 +62,6 @@ pytest-rerunfailures = "^12.0"
[tool.pytest.ini_options]
pythonpath = ["src"]

[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]

# configures some basic black settings per this article:
# https://ljvmiranda921.github.io/notebook/2018/06/21/precommits-using-black-and-flake8/
[tool.black]
Expand Down
Loading