forked from imsweb/django-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (21 loc) · 736 Bytes
/
Copy pathsetup.py
File metadata and controls
22 lines (21 loc) · 736 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import find_packages, setup
import bootstrap
setup(
name='ims-bootstrap',
version=bootstrap.__version__,
description='A collection of Django widgets and templatetags for Bootstrap integration.',
author='Dan Watson',
author_email='watsond@imsweb.com',
url='https://github.com/imsweb/django-bootstrap',
license='BSD',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities',
]
)