forked from 42cc/ripple_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (26 loc) · 954 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import join, dirname
from setuptools import setup, find_packages
setup(
name='django-ripple_api',
version='0.0.13',
packages=find_packages(),
requires=['python (>= 2.7)', 'requests', 'django_model_utils'],
install_requires=['requests<2.3.0', 'django-model-utils<1.4.0'],
tests_require=['mock'],
description='Python wrapper for the Ripple API',
long_description=open(join(dirname(__file__), 'README.rst')).read(),
author='42 Coffee Cups',
author_email='contact@42cc.co',
url='https://github.com/42cc/ripple_api',
download_url='https://github.com/42cc/ripple_api/archive/master.zip',
license='BSD License',
keywords=['ripple', 'api'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
],
)