-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 929 Bytes
/
pyproject.toml
File metadata and controls
39 lines (36 loc) · 929 Bytes
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
[tool.poetry]
name = "async-stripe"
version = "6.1.0"
description = "An asynchronous wrapper around Stripe's official python library."
authors = [
"Bharat Chauhan <tell.bhch@gmail.com>",
"Christian Glacet <cglacet@kune.tech>",
]
maintainers = [
"Bharat Chauhan <tell.bhch@gmail.com>",
"Christian Glacet <cglacet@kune.tech>",
]
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 = "6.2.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"
PyYAML = "^6"
typing_extensions = ">=4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"