This repository has been archived on 2025-05-04. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
s2forums/setup.py

25 lines
735 B
Python
Raw Permalink Normal View History

2011-08-17 17:24:21 +03:00
#!/usr/bin/env python
from setuptools import setup, find_packages
from djangobb_forum import get_version
2011-08-17 17:24:21 +03:00
setup(name='djangobb_forum',
version=get_version(),
description='DjangoBB is a quick and simple forum which uses the Django Framework.',
license='BSD',
2011-08-17 17:24:21 +03:00
url='http://djangobb.org/',
author='Alexey Afinogenov, Maranchuk Sergey',
author_email='Maranchuk Sergey <slav0nic0@gmail.com>',
packages=find_packages(),
include_package_data=True,
install_requires=[
2012-04-23 17:03:51 +03:00
'django>=1.3.1',
'pil>=1.1.7',
'django-haystack',
'django-pagination',
'south',
'postmarkup',
'setuptools'
],
2011-08-17 17:24:21 +03:00
keywords="django forum bb",
)