dpaste/setup.py
2013-11-24 21:06:46 +01:00

15 lines
346 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
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',
),
)