forked from jrief/djangocms-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (36 loc) · 1.26 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (36 loc) · 1.26 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from cms_bootstrap3 import __version__
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.3',
]
def read(fname):
readme_file = os.path.join(os.path.dirname(__file__), fname)
return os.popen('[ -x "$(which pandoc 2>/dev/null)" ] && pandoc -t rst {0} || cat {0}'.format(readme_file)).read()
setup(
name='djangocms-bootstrap3',
version=__version__,
description='Templates and templatetags to be used with djangoCMS and Bootstrap3.',
author='Jacob Rief',
author_email='jacob.rief@gmail.com',
url='https://github.com/jrief/djangocms-bootstrap3',
packages=find_packages(),
install_requires=[],
license='LICENSE-MIT',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
long_description=read('README.md'),
include_package_data=True,
zip_safe=False
)