-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 1020 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION = "0.2.1"
setup(
name="rollout",
version=VERSION,
description="Use Proclaim to release features to target users inside your Django project.",
long_description="""Conditionally roll out features with Redis by assigning
percentages, groups or users to features.""",
author="Timothée Peignier",
license="MIT",
author_email="[email protected]",
url="http://github.com/e-loue/rollout",
download_url="http://github.com/e-loue/rollout/downloads",
packages = find_packages(),
install_requires = ['distribute', 'redis', 'proclaim', 'django'],
tests_require=['pyyaml'],
keywords="redis rollout proclaim django",
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development"
]
)