-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
71 lines (67 loc) · 1.8 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
71
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cartridge_braintree"
version = "3.0.6"
description = "Braintree Payments processing for Mezzanine/Cartridge"
readme = "README.rst"
authors = [{ name = "Henri Hulski", email = "[email protected]" }]
license = { text = "BSD" }
requires-python = ">=3.7"
dependencies = [
"braintree",
"cartridge >= 1.3",
"django >= 3.2.4, < 4.1",
"mezzanine >= 5.1",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["django", "mezzanine", "cartridge", "payment"]
[project.urls]
repository = "https://github.com/henri-hulski/cartridge_braintree"
[project.optional-dependencies]
codestyle = [
"flake8 >= 3",
"black",
"isort >= 5",
"pyupgrade >= 2",
]
countries_utf8_sorting = ["pyuca"]
[tool.black]
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.tox
| \.venv
| __pypackages__
| build
| dist
| env
| venv
)/
)
'''