forked from bhch/async-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (34 loc) · 885 Bytes
/
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
[tool.poetry]
name = "async-stripe"
version = "5.4.0"
description = "An asynchronous wrapper around Stripe's official python library."
authors = [
"Bharat Chauhan <[email protected]>",
"Christian Glacet <[email protected]>",
]
maintainers = [
"Bharat Chauhan <[email protected]>",
"Christian Glacet <[email protected]>",
]
license = "BSD 3-Clause"
packages = [
{include = "async_stripe"},
]
repository = "https://github.com/bhch/async-stripe"
readme = "README.md"
keywords = ["stripe", "async", "asynchronous", "wrapper"]
[tool.poetry.dependencies]
python = "^3.6"
stripe = "5.4.0"
tornado = ">=5.1"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
mypy = "^0.940"
flake8 = "^3.9.2"
pytest = "7.0.1"
pytest-mock = "^3.6.1"
pytest-asyncio = "^0.15.1"
py = "^1.11.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"