forked from stephenmcd/hot-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (26 loc) · 887 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
29
30
from setuptools import setup, find_packages
from hot_redis import __version__ as version
setup(
name="hot-redis",
version=version,
author="Stephen McDonald",
author_email="[email protected]",
description="Higher Order Types for Redis",
long_description=open("README.rst").read(),
url="http://github.com/stephenmcd/hot-redis",
packages=find_packages(),
install_requires=["sphinx-me", "redis"],
zip_safe=False,
include_package_data=True,
test_suite="hot_redis.tests",
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Distributed Computing",
"Topic :: Software Development :: Object Brokering",
]
)