dpaste/setup.py

33 lines
1.1 KiB
Python
Raw Normal View History

2011-05-30 09:03:04 +10:00
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name='dpaste',
version='2.1',
description='dpaste is a Django based pastebin. It\'s intended to run '
'separately but its also possible to be installed into an '
'existing Django project like a regular app.',
long_description=open('README.rst').read(),
author='Martin Mahner',
author_email='martin@mahner.org',
url='https://github.com/bartTC/dpaste/',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
packages=find_packages(),
package_data={'dpaste': ['static/*.*', 'templates/*.*']},
include_package_data=True,
install_requires=[
'django>=1.4',
'django-mptt>=0.6.0',
'pygments>=1.6',
'requests>=2.0.0',
]
)