forked from basho/riak_pb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·22 lines (20 loc) · 768 Bytes
/
setup.py
File metadata and controls
executable file
·22 lines (20 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
from setuptools import setup
setup(name='riak_pb',
version='1.2.1',
description='Riak Protocol Buffers Messages',
packages=['riak_pb'],
requires=['protobuf(==2.4.1)'],
install_requires=['protobuf==2.4.1'],
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,
classifiers=['License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Database']
)