-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
31 lines (27 loc) · 980 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import os
from distutils.core import setup
from setuptools import find_packages
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
setup(
name='mezzanine-linkdump',
version='1.0.1',
packages=find_packages(),
include_package_data=True,
license='GPLv3',
description='A Mezzanine app to create, display, and track links.',
long_description=README,
url='http://github.com/prikhi/mezzanine-linkdump',
author='Pavan Rikhi',
author_email='pavan@sleepanarchy.com',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
install_requires=['mezzanine', 'django-mptt'],
)