forked from scratchfoundation/s2forums
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·24 lines (23 loc) · 735 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·24 lines (23 loc) · 735 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
#!/usr/bin/env python
from setuptools import setup, find_packages
from djangobb_forum import get_version
setup(name='djangobb_forum',
version=get_version(),
description='DjangoBB is a quick and simple forum which uses the Django Framework.',
license='BSD',
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=[
'django>=1.3.1',
'pil>=1.1.7',
'django-haystack',
'django-pagination',
'south',
'postmarkup',
'setuptools'
],
keywords="django forum bb",
)