-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (33 loc) · 957 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
"""
PoundPay Python client library.
See ``readme.rst`` for usage advice.
"""
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
PATH_TO_FILE = os.path.dirname(__file__)
with open(os.path.join(PATH_TO_FILE, 'README.rst')) as f:
long_description = f.read()
setup(
name='Poundpay',
version='0.5.1',
url='https://dev.poundpay.com/',
license='BSD',
author='Matin Tamizi, Mahmoud Abdelkader',
author_email='[email protected]',
description='Payments platform for marketplaces',
long_description=long_description,
packages=['poundpay'],
install_requires=[
'simplejson',
],
test_suite='nose.collector',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)