My favorites
▼
|
Sign in
django-forum
Simple Django Forum Component
Project Home
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
42
attachment: setup.py
(908 bytes)
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
34
35
36
from setuptools import setup, find_packages
import os
version = 'r27'
LONG_DESCRIPTION = """
============
Django Forum
============
This is a very basic forum application that can plug into any
existing Django installation and use it's existing templates,
users, and admin interface.
"""
setup(
name='django-forum',
version=version,
description="django-forum",
long_description=LONG_DESCRIPTION,
classifiers=[
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Framework :: Django",
"Environment :: Web Environment",
],
keywords='forum,django',
author='Ross Poulton',
author_email='ross@rossp.org',
url='http://code.google.com/p/django-forum/',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['setuptools'],
)
Powered by
Google Project Hosting