mirror of
https://github.com/DarrenOfficial/dpaste.git
synced 2024-11-15 08:02:54 +11:00
15 lines
346 B
Python
15 lines
346 B
Python
#!/usr/bin/env python
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name='dpaste',
|
|
version='1.2',
|
|
packages=find_packages(),
|
|
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
|
|
scripts=('manage.py',),
|
|
install_requires=(
|
|
'django-mptt>=0.6.0',
|
|
'pygments>=1.6',
|
|
'requests>=2.0.0',
|
|
),
|
|
)
|