-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
25 lines (24 loc) · 1.04 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
from distutils.core import setup
setup(name='django-mollie-ideal',
version='0.1',
description='Python/Django interface to Mollie.nl iDEAL API',
long_description=open('README.rst').read(),
author='Paul Burt',
author_email='[email protected]',
license='BSD',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utlities'],
url='http://github.com/peeb/django-mollie-ideal',
download_url='http://github.com/peeb/django-mollie-ideal/downloads',
packages=['mollie',
'mollie.ideal',
'mollie.ideal.management',
'mollie.ideal.management.commands'],
data_files=[('mollie', ['ideal/mollie_banklist.xml'])]
)