forked from HearthSim/dj-paypal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.02 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
[tool.poetry]
name = "dj-paypal"
version = "0.15.3"
description = "Django / Paypal integration (based on dj-stripe)"
authors = [
"Benedict Etzel <[email protected]>",
"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 :: 2.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial"
]
packages = [
{ include = "djpaypal", from = "src" }
]
[tool.poetry.dependencies]
python = "^3.6"
django = ">=2.2"
paypalrestsdk = ">=1.13.1"
python-dateutil =">= 2.6.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"