forked from dj-stripe/dj-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (58 loc) · 1.45 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
[tool.poetry]
name = "dj-stripe"
version = "2.4.0.dev0"
description = "Django + Stripe made easy"
license = "MIT"
authors = [
"Alexander Kavanaugh <[email protected]>",
"Jerome Leclanche <[email protected]>",
"John Carter <[email protected]>",
]
readme = "README.md"
repository = "https://github.com/dj-stripe/dj-stripe"
documentation = "https://dj-stripe.readthedocs.io/"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
]
packages = [
{ include = "djstripe" }
]
include = [
"AUTHORS.md",
"CONTRIBUTING.md",
"HISTORY.md",
"LICENSE",
]
exclude = [
"manage.py"
]
[tool.poetry.dependencies]
python = "^3.6"
Django = ">=2.2"
jsonfield = ">=3.0"
stripe = ">=2.48.0"
mkdocs = {version = "^1.1.2", optional = true}
mkautodoc = {version = "^0.1.0", optional = true}
[tool.poetry.dev-dependencies]
black = "^20.8b1"
djangorestframework = "^3.11.0"
psycopg2 = "^2.8.5"
flake8 = "^3.8.2"
isort = "^5.5.1"
pytest = "^5.4.3"
pytest-django = "^3.9.0"
[tool.poetry.extras]
docs = ["mkdocs", "mkautodoc"]
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry>=1.0.4"]
build-backend = "poetry.masonry.api"