dpaste/setup.py
Martin Mahner ee0fc79a3e Renamed pastebin > dpaste.
This is a way simpler project structure, its also backwards compatible. Its a huge cleanup and should make further development and also 3rd party integration much easier.
2013-03-19 13:33:35 +01:00

9 lines
310 B
Python

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