mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
Cleaned up app and project based requirements.
This commit is contained in:
parent
14d014bcba
commit
3ce888ad9f
2 changed files with 17 additions and 9 deletions
|
@ -1,10 +1,11 @@
|
|||
django==1.5.4
|
||||
# Project dependencies
|
||||
django-mptt==0.6.0
|
||||
django-redis==3.3
|
||||
pygments==1.6
|
||||
south==0.8.2
|
||||
requests==2.0.0
|
||||
|
||||
# Deployment specific
|
||||
gunicorn==18.0
|
||||
mysql-python==1.2.4
|
||||
mysql-python==1.2.4
|
||||
django==1.5.5
|
||||
south==0.8.2
|
||||
django-redis==3.3
|
||||
|
|
17
setup.py
17
setup.py
|
@ -1,8 +1,15 @@
|
|||
#!/usr/bin/env python
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(name='dpaste',
|
||||
version='1.1',
|
||||
packages=find_packages(),
|
||||
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
|
||||
scripts=['manage.py'])
|
||||
setup(
|
||||
name='dpaste',
|
||||
version='1.2',
|
||||
packages=find_packages(),
|
||||
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
|
||||
scripts=('manage.py',),
|
||||
install_requires=(
|
||||
'django-mptt>=0.6.0',
|
||||
'pygments>=1.6',
|
||||
'requests>=2.0.0',
|
||||
),
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue