forked from ianare/django-memcache-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (31 loc) · 1.12 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
29
30
31
32
33
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import memcache_admin
setup(
name="django-memcache-admin",
version=memcache_admin.__version__,
author="Ianaré Sévi",
author_email="ianare@gmail.com",
url="https://github.com/ianare/django-memcache-admin",
license="LGPLv3+",
keywords="memcached",
description=" ".join(memcache_admin.__doc__.splitlines()).strip(),
long_description=open("README.rst", "rt").read(),
install_requires=[
"Django>=1.6",
],
packages=find_packages(exclude=['*.tests', '*.tests.*']),
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP :: Site Management",
],
)