-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (29 loc) · 914 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
#!/usr/bin/env python
from setuptools import setup, find_packages
import django_gocardless
setup(
name='django-gocardless',
version=".".join(map(str, django_gocardless.__version__)),
author='Ben Mason',
author_email='[email protected]',
maintainer="Ben Mason",
maintainer_email="[email protected]",
url='http://github.com/astonecutter/django-cardless',
install_requires=[
'Django>=1.0',
'gocardless',
'django_model_utils',
'django-nose'
],
description=(
'A pluggable Django application for integrating GoCardless payments'),
packages=find_packages(),
include_package_data=True,
classifiers=[
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)