forked from bitlabstudio/django-paypal-express-checkout
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
41 lines (37 loc) · 1.05 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
import os
from setuptools import setup, find_packages
import paypal_express_checkout
def read(fname):
try:
return open(os.path.join(os.path.dirname(__file__), fname)).read()
except IOError:
return ''
setup(
name="django-paypal-express-checkout",
version=paypal_express_checkout.__version__,
description=read('DESCRIPTION'),
long_description=read('README.rst'),
license='The MIT License',
platforms=['OS Independent'],
keywords='django, url, paypal, paypal_express_checkout, API',
author='Daniel Kaufhold',
author_email='[email protected]',
url="https://github.com/bitmazk/django-paypal-express-checkout",
packages=find_packages(),
include_package_data=True,
install_requires=[
'django',
'django_libs',
],
tests_require=[
'fabric',
'factory_boy',
'django-nose',
'coverage',
'django-coverage',
'mock',
'flake8',
'django-libs'
],
test_suite='paypal_express_checkout.tests.runtests.runtests',
)