forked from berlotto/moipy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.14 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
#!/usr/bin/env python
from distutils.core import setup
setup(name='Moipy',
version='0.4.1',
description='Python integration with MoIP payment gateway via API',
author=['Herberth Amaral',
'Ale Borba',
'Victor',
'Felipe Gubert',
'Felipe Morato'],
author_email=['[email protected]',
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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
],
requires=[
'lxml',
'requests']
)