forked from infinispan/python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 1 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
#!/usr/bin/env python
from setuptools import setup
version = "1.0.0b1"
setup(name = 'infinispan',
version = version,
description = 'Native python client for Infinispan, over the Hot Rod wire protocol',
author = 'Galder Zamarreno',
author_email = '[email protected]',
url = 'http://infinispan.org',
py_modules = ['infinispan.remotecache', 'infinispan.unsigned'],
classifiers = [
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords = 'infinispan hotrod nosql datagrid',
license = 'LGPL',
install_requires = [
'setuptools',
'greenlet',
],
long_description = "See `Infinispan Native Python Client <https://github.com/infinispan/python-client>`_ for more information."
)