added setup.py
This commit is contained in:
parent
5051c49ab5
commit
0f08603d17
4 changed files with 29 additions and 7 deletions
|
@ -2,6 +2,7 @@ syntax: glob
|
||||||
*.pyc
|
*.pyc
|
||||||
*.pyo
|
*.pyo
|
||||||
*.orig
|
*.orig
|
||||||
|
*.egg-info
|
||||||
.pydevproject
|
.pydevproject
|
||||||
.project
|
.project
|
||||||
*.db
|
*.db
|
||||||
|
@ -13,8 +14,6 @@ syntax: glob
|
||||||
*.wpr
|
*.wpr
|
||||||
.coverage
|
.coverage
|
||||||
local_settings.py
|
local_settings.py
|
||||||
djangobb/basic_project/static/forum/avatars/
|
.env
|
||||||
djangobb/basic_project/static/forum/attachments/
|
build/
|
||||||
djangobb/basic_project/secret.txt
|
dist/
|
||||||
djangobb/basic_project/djangobb_index/
|
|
||||||
djangobb/venv/
|
|
|
@ -1 +1 @@
|
||||||
0000000000000000000000000000000000000000 projects
|
5c07e2748ddf167254a4de92454c0913fe8a0fd5 projects
|
||||||
|
|
|
@ -2,7 +2,7 @@ Django>=1.2
|
||||||
PIL>=1.1.7
|
PIL>=1.1.7
|
||||||
django-registration==0.7
|
django-registration==0.7
|
||||||
django-haystack>=1.1.0
|
django-haystack>=1.1.0
|
||||||
souch
|
south
|
||||||
django-messages==0.4.4
|
django-messages==0.4.4
|
||||||
pygments
|
pygments
|
||||||
-e hg+http://bitbucket.org/benoitc/django-authopenid#egg=django-authopenid
|
-e hg+http://bitbucket.org/benoitc/django-authopenid#egg=django-authopenid
|
||||||
|
|
23
setup.py
Executable file
23
setup.py
Executable file
|
@ -0,0 +1,23 @@
|
||||||
|
#!/usr/bin/env python
|
||||||
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
|
setup(name='djangobb_forum',
|
||||||
|
version='0.0.1a0',
|
||||||
|
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>",
|
||||||
|
package_dir = {'djangobb_forum': 'djangobb_forum'},
|
||||||
|
packages=['djangobb_forum'],
|
||||||
|
install_requires=['django>=1.2',
|
||||||
|
'pil>=1.1.7',
|
||||||
|
'django-messages==0.4.4',
|
||||||
|
'django-haystack',
|
||||||
|
'django-authopenid',
|
||||||
|
'south',
|
||||||
|
'postmarkup'
|
||||||
|
],
|
||||||
|
keywords="django forum bb",
|
||||||
|
)
|
Reference in a new issue