-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 721 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from distutils.core import setup
setup(
name='pythoncielo3',
packages=['pythoncielo3'],
version='0.0.3',
description='Python integration for Cielo API 3.0',
author='Eduardo Barbosa',
author_email='eduardo.barbosa@ufmg.br',
url='https://github.com/eduardomb/pythoncielo3',
download_url='https://github.com/eduardomb/pythoncielo3/tarball/0.0.3',
keywords=['cielo', 'api', 'webservice'],
install_requires=['requests'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Topic :: Software Development :: Libraries',
'Programming Language :: Python :: 3',
],
)