-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.03 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.03 KB
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
#!/usr/bin/env python
from setuptools import setup, find_packages
try:
README = open('README.rst').read()
except:
README = None
try:
LICENSE = open('LICENSE.txt').read()
except:
LICENSE = None
setup(
name = 'django-adyen',
version = '0.1',
description='Python/Django interface to the Adyen payment gateway.',
long_description=README,
author = 'Mathijs de Bruin',
author_email = 'mathijs@mathijsfietst.nl',
license = LICENSE,
url = 'http://github.com/dokterbob/django-adyen/',
packages = find_packages(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Framework :: Django',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Environment :: Web Environment',
],
)