-
Notifications
You must be signed in to change notification settings - Fork 20
/
pyproject.toml
47 lines (43 loc) · 1.16 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
[tool.poetry]
name = "dj-paypal"
version = "0.16.0"
description = "Django / Paypal integration (based on dj-stripe)"
authors = [
"Benedict Etzel",
"Jerome Leclanche <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/dj-stripe/dj-paypal"
keywords = ["django", "paypal", "payments"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial"
]
packages = [
{ include = "djpaypal", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.1"
paypalrestsdk = ">=1.13.1"
python-dateutil =">= 2.6.1"
[tool.poetry.dev-dependencies]
flake8 = "3.7.9"
flake8-isort = "2.7.0"
flake8-quotes = "2.1.1"
iso8601 = "2.1.0"
isort = "4.3.21"
psycopg2-binary = "^2.8.4"
pytest = "^7.2.0"
pytest-django = "^4.6.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"