forked from stripe/stripe-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
70 lines (60 loc) · 1.21 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
line-length=79
exclude = '''
/(
\.eggs/
| \.git/
| \.tox/
| \.venv/
| _build/
| build/
| dist/
| stripe/six.py
)
'''
[tool.poetry]
name = "stripe"
version = "2.29.3"
description = "Python bindings for the Stripe API"
license = "MIT"
authors = [
"Stripe <[email protected]>"
]
readme = 'LONG_DESCRIPTION.rst'
repository = "https://github.com/stripe/stripe-python"
homepage = "https://github.com/stripe/stripe-python"
documentation = "https://stripe.com/docs/api?lang=python"
keywords = ['stripe', 'api', 'payments']
include = [
"data/ca-certificates.crt",
"stripe/**/*.py",
"tests/**/*.py",
".coveragerc",
".flake8",
"CHANGELOG.md",
"LICENSE",
"LONG_DESCRIPTION.rst",
"README.md",
"VERSION",
"pyproject.toml",
"pytest.ini",
"tox.ini"
]
[tool.poetry.dependencies]
python = "~2.7 || ^3.4"
requests = [
{ version = "^2.20", python = "~2.7", extras = [ "security" ] },
{ version = "^2.20", python = "^3.4" }
]
toml = "^0.9"
[tool.poetry.dev-dependencies]
coveralls = "^1.7"
flake8 = "^3.7"
pytest = "^4.4"
pytest-cov = "^2.6"
pytest-mock = "^1.10"
pytest-xdist = "^1.28"
tox = "^3.9"