mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 16:12:51 +11:00
ee0fc79a3e
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.
9 lines
310 B
Python
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'])
|