source: setup.py @ 431:9080ce8f4d39

stable
Last change on this file since 431:9080ce8f4d39 was 431:9080ce8f4d39, checked in by slav0nic <slav0nic0@…>, 13 months ago

add django-pagination to setup.py

  • Property exe set to *
File size: 771 bytes
Line 
1#!/usr/bin/env python
2from setuptools import setup, find_packages
3from djangobb_forum import get_version
4
5setup(name='djangobb_forum',
6    version=get_version(),
7    description='DjangoBB is a quick and simple forum which uses the Django Framework.',
8    license='BSD',
9    url='http://djangobb.org/',
10    author='Alexey Afinogenov, Maranchuk Sergey',
11    author_email='Maranchuk Sergey <slav0nic0@gmail.com>',
12    packages=find_packages(),
13    include_package_data=True,
14    install_requires=[
15            'django>=1.2',
16            'pil>=1.1.7',
17            'django-messages==0.4.4',
18            'django-haystack',
19            'django-pagination',
20            'south',
21            'postmarkup',
22            'setuptools'
23            ],
24    keywords="django forum bb",
25)
Note: See TracBrowser for help on using the repository browser.