dpaste/setup.py
2013-11-29 18:48:53 +01:00

16 lines
369 B
Python

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