dpaste/setup.py
2013-03-19 19:58:10 +01:00

8 lines
234 B
Python

#!/usr/bin/env python
from setuptools import setup, find_packages
setup(name='dpaste',
version='1.0',
packages=find_packages(),
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
scripts=['manage.py'])