-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
53 lines (47 loc) · 1.6 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup, find_packages
from cms_bootstrap import __version__
with open('README.md') as fh:
long_description = fh.read()
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
]
setup(
name='djangocms-bootstrap',
version=__version__,
description='Templates and templatetags to be used with django-CMS with Bootstrap3 or Bootstrap4.',
author='Jacob Rief',
author_email='[email protected]',
url='https://github.com/jrief/djangocms-bootstrap',
packages=find_packages(),
install_requires=[
'django-cms>3.4',
],
license='MIT',
platforms=['OS Independent'],
keywords=['django-cms', 'bootstrap-3', 'bootstrap-4'],
classifiers=CLASSIFIERS,
long_description=long_description,
long_description_content_type='text/markdown',
include_package_data=True,
zip_safe=False
)