mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
9 lines
318 B
Python
9 lines
318 B
Python
#!/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'])
|