-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (28 loc) · 1.19 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
#!/usr/bin/env python
from setuptools import setup
from setuptools import find_packages
setup(
url = 'https://github.com/Chedi/django-iban-field',
name = 'django-iban-field',
author = 'Chedi Toueiti',
license = 'GNU General Public License v3 (GPLv3)',
version = '0.8',
packages = find_packages(),
keywords = 'django iban field',
platforms = ['any'],
maintainer = 'Chedi Toueiti',
description = 'IBAN field for django with validation and optional postgresql in database constraint checking',
author_email = '[email protected]',
maintainer_email = '[email protected]',
long_description = open('README.rst').read(),
include_package_data = True,
classifiers=[
'Framework :: Django :: 1.8',
'Environment :: Web Environment',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)