forked from jazzband/django-payments
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·65 lines (61 loc) · 1.83 KB
/
setup.py
File metadata and controls
executable file
·65 lines (61 loc) · 1.83 KB
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
#!/usr/bin/env python
from setuptools import setup
PACKAGES = [
"payments",
"payments.authorizenet",
"payments.braintree",
"payments.coinbase",
"payments.cybersource",
"payments.dummy",
"payments.dotpay",
"payments.paypal",
"payments.sagepay",
"payments.sofort",
"payments.stripe",
"payments.wallet",
]
REQUIREMENTS = [
"braintree>=3.14.0",
"Django>=2.2",
"cryptography>=1.1.0",
"PyJWT>=1.3.0,<2.0.0",
"requests>=1.2.0",
"stripe>=2.6.0",
"suds-jurko>=0.6",
"xmltodict>=0.9.2",
]
setup(
name="django-payments",
author="Mirumee Software",
author_email="hello@mirumee.com",
description="Universal payment handling for Django",
long_description=open("README.rst").read(),
use_scm_version={
"version_scheme": "post-release",
"write_to": "payments/version.py",
},
setup_requires=["setuptools_scm"],
url="http://github.com/jazzband/django-payments",
packages=PACKAGES,
include_package_data=True,
classifiers=[
"Environment :: Web Environment",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Framework :: Django",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=REQUIREMENTS,
zip_safe=False,
)