Cleaned up app and project based requirements.

This commit is contained in:
Martin Mahner 2013-11-24 21:06:46 +01:00
parent 14d014bcba
commit 3ce888ad9f
2 changed files with 17 additions and 9 deletions

View file

@ -1,10 +1,11 @@
django==1.5.4 # Project dependencies
django-mptt==0.6.0 django-mptt==0.6.0
django-redis==3.3
pygments==1.6 pygments==1.6
south==0.8.2
requests==2.0.0 requests==2.0.0
# Deployment specific # Deployment specific
gunicorn==18.0 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

View file

@ -1,8 +1,15 @@
#!/usr/bin/env python #!/usr/bin/env python
from setuptools import setup, find_packages from setuptools import setup, find_packages
setup(name='dpaste', setup(
version='1.1', name='dpaste',
version='1.2',
packages=find_packages(), packages=find_packages(),
package_data={'dpaste': ['static/*.*', 'templates/*.*']}, package_data={'dpaste': ['static/*.*', 'templates/*.*']},
scripts=['manage.py']) scripts=('manage.py',),
install_requires=(
'django-mptt>=0.6.0',
'pygments>=1.6',
'requests>=2.0.0',
),
)