forked from prymitive/bootstrap-breadcrumbs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (33 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: Copyright 2013 by Łukasz Mierzwa
:contact: l.mierzwa@gmail.com
"""
from __future__ import unicode_literals
from setuptools import setup, find_packages
setup(
name='django_bootstrap_breadcrumbs',
version='0.8',
url='http://prymitive.github.com/bootstrap-breadcrumbs',
license='MIT',
description='Django breadcrumbs for Bootstrap 2, 3 or 4',
long_description='Django template tags used to generate breadcrumbs html '
'using bootstrap css classes or custom template',
author='Łukasz Mierzwa',
author_email='l.mierzwa@gmail.com',
packages=find_packages(exclude=['tests']),
install_requires=[
'six',
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
zip_safe=False,
include_package_data=True,
)