dpaste/setup.py

10 lines
318 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='pastebin',
version='0.1',
packages=find_packages(),
package_data={'pastebin': ['bin/*.*', 'static/*.*', 'templates/*.*']},
exclude_package_data={'pastebin': ['bin/*.pyc']},
scripts=['pastebin/bin/manage.py'])