forked from moiplabs/moipy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 829 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 829 Bytes
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'],
author_email=['herberthamaral@gmail.com','ale.alvesborba@gmail.com','vitalbh@gmail.com', 'felipe.gubert@gmail.com'],
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',
])