1
0
Fork 0
django-microcms/setup.py

28 lines
671 B
Python
Raw Permalink Normal View History

2010-08-18 00:01:42 +02:00
# -*- coding: utf-8 -*-
2010-11-16 12:46:48 +01:00
"""microcms setup file.
THIS SOFTWARE IS UNDER BSD LICENSE.
2012-11-24 22:58:10 +01:00
Copyright (c) 2010-2012 Daniele Tricoli <eriol@mornie.org>
2010-11-16 12:46:48 +01:00
Read LICENSE for more informations.
"""
2010-11-16 10:34:37 +01:00
from setuptools import setup, find_packages
2010-08-18 00:01:42 +02:00
from microcms import VERSION
2010-11-13 03:03:20 +01:00
setup(
2010-11-26 06:08:32 +01:00
name='django-microcms',
2010-11-16 12:44:40 +01:00
version='.'.join(str(v) for v in VERSION),
2010-11-16 11:54:34 +01:00
description='Minimalistic flatpage enhancement.',
2010-11-13 03:03:20 +01:00
author='Daniele Tricoli',
author_email='eriol@mornie.org',
2010-11-16 10:34:37 +01:00
packages=find_packages(),
package_data = {
'microcms': [
'locale/*/LC_MESSAGES/*',
2010-11-16 12:21:10 +01:00
'templates/flatpages/*',
'static/microcms/css/*.css'
2010-11-16 10:34:37 +01:00
],
},
2010-11-13 03:03:20 +01:00
)