forked from brosner/django-announcements
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 807 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-announcements",
version = __import__("announcements").__version__,
author = "Brian Rosner",
author_email = "brosner@gmail.com",
description = "Announcements for your Django powered website.",
long_description = open("README").read(),
license = "MIT",
url = "http://code.google.com/p/django-announcements",
packages = [
"announcements",
"announcements.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",
]
)