-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (32 loc) · 1.26 KB
/
pyproject.toml
File metadata and controls
36 lines (32 loc) · 1.26 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
[tool.poetry]
name = "pythepeer"
version = "0.0.7"
description = "official python sdk for interacting with thepeer payment processing infrastructure"
authors = ["Osagie Iyayi <iyayiemmanuel1@gmail.com>"]
readme = "README.md"
packages = [{ include = "thepeer" }]
keywords = ["thepeer", "pythepeer", "fintech", "peer-to-peer"]
license = "MIT"
classifiers = [
"Development Status :: 5 - Production/Stable",
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
# as the current state of your package
"Intended Audience :: Developers", # Define that your audience are developers
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License", # Again, pick a license
"Programming Language :: Python :: 3",
# Specify which python versions that you want to support
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries",
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = "^0.24.1"
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
ruff = "^0.0.287"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"