dpaste/setup.py

17 lines
369 B
Python
Raw Normal View History

2011-05-30 09:03:04 +10:00
#!/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>=1.4',
'django-mptt>=0.6.0',
'pygments>=1.6',
'requests>=2.0.0',
),
)