forked from moiplabs/moipy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
21 lines (19 loc) · 829 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env python
from distutils.core import setup
setup(name='Moipy',
version='0.4',
description='Python integration with MoIP payment gateway via API',
author=['Herberth Amaral','Ale Borba','Victor', 'Felipe Gubert'],
url='http://labs.moip.com.br/',
packages=['moipy'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'License :: OSI Approved :: Python Software Foundation License',
'Operating System :: MacOS :: MacOSX',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
])