-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·36 lines (34 loc) · 1.28 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
#!/usr/bin/env python
import platform
from setuptools import setup, find_packages
from version import get_version
from commands import preconfigure, configure, create_bucket_types
install_requires = ["riak >=2.1.0", "python_twitter >= 2.0"]
requires = ["riak(>=2.1.0)", "python_twitter(>=2.0)"]
tests_require = []
setup(
name='riak-python-test',
version=get_version(),
packages=find_packages(),
requires=requires,
install_requires=install_requires,
tests_require=tests_require,
package_data={'riak-python-test': ['erl_src/*']},
description='Tester for Python client for Riak',
zip_safe=True,
options={'easy_install': {'allow_hosts': 'pypi.python.org'}},
include_package_data=True,
license='Apache 2',
platforms='Platform Independent',
author='Basho Technologies',
author_email='[email protected]',
test_suite='riak.tests.suite',
url='https://github.com/javajolt/riak-python-test',
cmdclass={'create_bucket_types': create_bucket_types,
'preconfigure': preconfigure,
'configure': configure},
classifiers=['License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Database']
)