-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·28 lines (24 loc) · 961 Bytes
/
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-pxpay',
version='0.2.6',
url='http://github.com/pavel-shpilev/django-pxpay',
author="Pavel Shpilev",
author_email="[email protected]",
description="PaymentExpress PxPay Gateway for Django",
long_description=read('README.rst'),
keywords="PxPay, Payment, PaymentExpress, DPS, Django, Python",
license='BSD',
packages=find_packages(exclude=['test']),
install_requires=['requests>=0.13.5'],
include_package_data=True,
classifiers=['Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python'])