forked from basho/riak_pb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (24 loc) · 968 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
#!/usr/bin/env python
from setuptools import setup
import version
from msgcodegen import build_messages, clean_messages
setup(name='riak_pb',
version=version.get_version(),
description='Riak Protocol Buffers Messages',
packages=['riak_pb'],
requires=['protobuf(>=2.4.1,<2.6.0)'],
install_requires=['protobuf >=2.4.1, <2.6.0'],
options={'easy_install': {'allow_hosts': 'pypi.python.org'}},
license='Apache 2',
platforms='Platform Independent',
author='Basho Technologies',
author_email='clients@basho.com',
url='https://github.com/basho/riak_pb',
zip_safe=True,
cmdclass={'build_messages': build_messages,
'clean_messages': clean_messages},
classifiers=['License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Database']
)