forked from ojii/cmsplugin-blog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (33 loc) · 1.16 KB
/
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, find_packages
import os
import cmsplugin_blog
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',
]
setup(
name='cmsplugin-blog',
version=cmsplugin_blog.get_version(),
description='This is a blog app/plugin for django-cms 2.2',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.txt')).read(),
author='Oyvind Saltvik',
author_email='[email protected]',
url='http://github.com/fivethreeo/cmsplugin-blog/',
packages=find_packages(),
package_data={
'cmsplugin_blog': [
'static/cmsplugin_blog/*',
'locale/*/LC_MESSAGES/*',
]
},
classifiers=CLASSIFIERS,
test_suite = "cmsplugin_blog.test.run_tests.run_tests",
include_package_data=True,
zip_safe=False,
install_requires=['django-cms', 'simple-translation', 'djangocms-utils', 'django-tagging', 'django-missing'],
)