forked from conekta/conekta-python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
38 lines (35 loc) · 1.05 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
36
37
38
#!/usr/bin/python
#coding: utf-8
#(c) 2013 Julian Ceballos <@jceb>
from setuptools import setup, find_packages
version = "2.0"
author = "Conekta"
setup(
name='conekta',
version=version,
author=author,
author_email='[email protected]',
url='https://github.com/conekta/conekta-python',
description='Easy Conekta python wrapper',
long_description=open('./README.txt', 'r').read(),
download_url='https://github.com/conekta/conekta-python/tarball/master',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'License :: OSI Approved :: MIT License',
],
packages=find_packages(),
install_requires=[
'httplib2',
'simplejson',
'nose'
],
license='MIT License',
keywords='conekta wrapper',
include_package_data=True,
zip_safe=True,
)