mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-16 00:22:54 +11:00
8 lines
234 B
Python
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'])
|