-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
36 lines (27 loc) · 931 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
32
33
34
35
36
from setuptools import setup
setup(
name='mezzanine-slides',
version='1.0.1',
license='Simplified BSD',
install_requires = [
'Mezzanine',
],
description='Easily plug a slideshow into your mezzanine website on all pages.',
long_description=open('README.md').read(),
author='Isaac Bythewood',
author_email='isaac@bythewood.me',
url='http://github.com/overshard/mezzanine-slides',
download_url='http://github.com/overshard/mezzanine-slides/downloads',
include_package_data=True,
packages=['mezzanine_slides'],
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)