forked from PiDelport/django-payfast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·46 lines (34 loc) · 1.19 KB
/
setup.py
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
#!/usr/bin/env python
import sys
from setuptools import setup, find_packages
def README():
with open('README.rst') as f:
return f.read()
_PYTHON_2_BACKPORTS = ['ipaddress'] if sys.version_info < (3,) else []
setup(
name='django-payfast',
# Version automatically from tags using setuptools-scm
use_scm_version=True,
maintainer='Pi Delport',
maintainer_email='[email protected]',
packages=find_packages(exclude=['payfast_tests']),
setup_requires=['setuptools-scm'],
install_requires=[
'six',
'Django',
] + _PYTHON_2_BACKPORTS,
url='https://github.com/pjdelport/django-payfast',
license='MIT license',
description='A pluggable Django application for integrating payfast.co.za payment system.',
long_description=README(),
classifiers=(
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
),
)