-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
53 lines (48 loc) · 1.3 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
[tool.poetry]
name = "django-salesman-stripe"
version = "0.1.6"
description = "Stripe payment integration for Salesman."
authors = ["Dino Perovic <dino.perovic@gmail.com>"]
license = "BSD-3-Clause"
readme = "README.md"
homepage = "https://pypi.org/project/django-salesman-stripe/"
repository = "https://github.com/dinoperovic/django-salesman-stripe"
keywords = ["Stripe", "Salesman", "e-commerce"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 2",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Internet",
]
packages = [
{include = "salesman_stripe"},
]
include = ["LICENSE"]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
django-salesman = ">=1.1.3"
stripe = "^2.67.0"
[tool.poetry.dev-dependencies]
pre-commit = "*"
isort = "5.12.0"
black = "22.12.0"
flake8 = "6.0.0"
mypy = "0.991"
[tool.isort]
profile = "black"
known_first_party = ["salesman_stripe"]
known_third_party = ["salesman"]
[tool.mypy]
exclude = ["example"]
ignore_missing_imports = true
strict = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"