forked from alexmalykh/cmsplugin-css-background
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (37 loc) · 1.36 KB
/
setup.py
File metadata and controls
44 lines (37 loc) · 1.36 KB
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
40
41
42
43
44
import io
import setuptools
with io.open('README.rst', 'r') as readme:
try:
long_description = readme.read()
except IOError:
long_description = ''
setup_params = dict(
author='Alex Malykh',
author_email='a2m.dev@yandex.ru',
name='cmsplugin-css-background',
use_scm_version=dict(root='.', relative_to=__file__),
description='A django CMS plugin for managing CSS background styles',
long_description=long_description,
license='MIT License',
url='https://github.com/alexmalykh/cmsplugin-css-background',
packages=setuptools.find_packages(),
install_requires=['django-cms>=3.3,<4.0', 'django-sekizai>=0.7'],
setup_requires=['setuptools_scm'],
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
if __name__ == '__main__':
setuptools.setup(**setup_params)