-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
32 lines (30 loc) · 909 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
from setuptools import setup, find_packages
setup(
name = "django_payone",
version = "0.1.0-3",
description = 'Payone client and server API',
author = 'David Danier',
author_email = '[email protected]',
url = 'https://github.com/ddanier/django_payone',
long_description=open('README.rst', 'r').read(),
packages = [
'django_payone',
'django_payone.channel',
],
package_data = {
'django_payone': ['static/payone/client.js'],
},
install_requires = [
'Django >=1.3',
],
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 :: Utilities'
],
)