forked from tschellenbach/Django-ogone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (34 loc) · 1.12 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
#!/usr/bin/env python
from django_ogone import __version__, __maintainer__, __email__
from setuptools import setup, find_packages
try:
README = open('README.md').read()
except:
README = None
try:
LICENSE = open('LICENSE.txt').read()
except:
LICENSE = None
setup(
name = 'django-ogone',
version = __version__,
description='Python/Django client to the ogone payment system.',
long_description=README,
author = __maintainer__,
author_email = __email__,
license = LICENSE,
url = 'http://github.com/tschellenbach/Django-ogone',
packages = find_packages(),
data_files=(['README.md', 'LICENSE.txt']),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
],
)