forked from WnP/djangocms-css-background
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.15 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
37
38
39
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
try:
import pypandoc
description = pypandoc.convert('README.md', 'rst')
except (IOError, ImportError):
with open('README.md', 'rb') as f:
description = f.read()
setup(
name='djangocms_css_background',
version='1.0.4',
license='MIT',
description='A django-cms plugin which allow you to edit css background image or color from the edit mode',
long_description=description,
include_package_data=True,
url='https://github.com/nikita-gorodeckij/djangocms-css-background',
packages=find_packages(),
install_requires=[
'django-cms>=3.0.5',
'djangocms-placeholder-attr>=1.0.2',
'cmsplugin-filer>=0.10',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
],
zip_safe=False,
)
## Installation by Mauricio Aizga - @MaoAiz