forked from brosner/django-groups
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 760 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
from distutils.core import setup
setup(
name = "django-groups",
version = "0.1.dev11",
url = "http://pinaxproject.com/docs/dev/groups.html",
description = "Django group support (extracted from Pinax)",
long_description = open("README", "rb").read(),
author = "Brian Rosner",
author_email = "[email protected]",
license = "MIT",
packages = [
"groups",
"groups.templatetags",
],
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)