forked from prymitive/bootstrap-breadcrumbs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·37 lines (33 loc) · 1.09 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
:copyright: Copyright 2013 by Łukasz Mierzwa
:contact: [email protected]
"""
from setuptools import setup, find_packages
setup(
name='django-bootstrap-breadcrumbs2',
version='1.0.0',
url='https://github.com/christianwgd/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, Christian Wiegand',
author_email='[email protected]',
maintainer='Christian Wiegand',
packages=find_packages(exclude=['tests']),
install_requires=[
'django'
],
classifiers=[
'License :: OSI Approved :: MIT License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
platforms=['any'],
zip_safe=False,
include_package_data=True,
python_requires='>=3.7',
)