-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 876 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
from setuptools import find_packages, setup
from mezzanine2jekyll import __version__
setup(
name='mezzanine2jekyll',
version=__version__,
license='BSD',
author='Sam Kingston',
author_email='sam@sjkwi.com.au',
description='Django management command to add support for exporting Mezzanine\'s blog posts to Jekyll post files',
long_description_markdown_filename='README.md',
url='https://github.com/sjkingo/mezzanine2jekyll',
install_requires=[
'Mezzanine',
],
packages=find_packages(),
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
],
)