djangocms_blog/setup.py

71 lines
2.0 KiB
Python
Raw Permalink Normal View History

2014-01-05 09:34:10 +00:00
#!/usr/bin/env python
2015-01-04 16:59:20 +00:00
# -*- coding: utf-8 -*-
2014-01-05 09:34:10 +00:00
import djangocms_blog
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = djangocms_blog.__version__
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
2014-01-05 09:34:10 +00:00
setup(
name='djangocms-blog',
version=version,
description='A djangoCMS 3 blog application',
long_description=readme + '\n\n' + history,
author='Iacopo Spalletti',
author_email='i.spalletti@nephila.it',
url='https://github.com/nephila/djangocms-blog',
2014-01-05 09:34:10 +00:00
packages=[
'djangocms_blog',
],
include_package_data=True,
install_requires=[
'django-parler>=1.5',
2016-06-05 22:05:14 +00:00
'django-cms>=3.2',
'django-taggit>=0.12.2',
2016-06-22 06:10:38 +00:00
'django-filer>=1.1',
2014-02-03 17:49:29 +00:00
'pytz',
'django-taggit-templatetags',
'django-taggit-autosuggest',
2014-06-08 22:05:23 +00:00
'djangocms-text-ckeditor',
2016-06-21 14:43:12 +00:00
'cmsplugin-filer>=1.0',
'easy-thumbnails>=2.4.1',
2016-04-09 05:25:27 +00:00
'django-meta>=1.2',
'django-meta-mixin>=0.3',
2015-08-22 20:35:30 +00:00
'aldryn-apphooks-config>=0.2.6',
2015-10-25 16:03:31 +00:00
'djangocms-apphook-setup',
2017-06-10 12:44:57 +00:00
'django-sortedm2m',
2014-02-13 06:31:23 +00:00
],
extras_require={
'search': ['aldryn-search'],
'taggit-helpers': ['django-taggit-helpers']
},
2015-07-18 14:51:41 +00:00
license='BSD',
2014-01-05 09:34:10 +00:00
zip_safe=False,
2014-04-27 00:59:21 +00:00
keywords='djangocms-blog, blog, django, wordpress, multilingual',
2015-01-01 17:51:45 +00:00
test_suite='cms_helper.run',
2014-01-05 09:34:10 +00:00
classifiers=[
2015-12-23 11:03:15 +00:00
'Development Status :: 5 - Production/Stable',
2014-01-05 09:34:10 +00:00
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Framework :: Django',
2015-07-19 08:23:11 +00:00
'Framework :: Django :: 1.8',
2016-06-05 16:35:06 +00:00
'Framework :: Django :: 1.9',
2018-01-09 00:08:57 +00:00
'Framework :: Django :: 1.10',
2015-07-18 14:51:41 +00:00
'Programming Language :: Python :: 2',
2014-01-05 09:34:10 +00:00
'Programming Language :: Python :: 2.7',
2015-07-18 14:51:41 +00:00
'Programming Language :: Python :: 3',
2014-12-10 19:24:20 +00:00
'Programming Language :: Python :: 3.4',
2015-10-17 16:11:57 +00:00
'Programming Language :: Python :: 3.5',
2014-01-05 09:34:10 +00:00
],
2014-02-03 17:49:29 +00:00
)