-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (19 loc) · 784 Bytes
/
setup.py
File metadata and controls
21 lines (19 loc) · 784 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='Buscape',
version='0.7.2',
description='Python integration with BuscaPe via API',
author='Igor Hercowitz/Ale Borba/Andre Ramos',
author_email='ihercowitz@gmail.com / ale.alvesborba@gmail.com / andrel.ramos97@gmail.com',
url='http://developer.buscape.com.br',
packages=['buscape'],
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',
])