forked from 55minutes/django-bootstrap-staticfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 loc) · 1.12 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="django-bootstrap-staticfiles",
version="2.3.2",
packages=find_packages(),
package_data={
'django_bootstrap_staticfiles': [
'static/css/*.css',
'static/img/*.png',
'static/js/bootstrap-*.js',
],
},
# metadata for upload to PyPI
author="George Song",
author_email="george@55minutes.com",
description="Django app that provides compiled Bootstrap assets",
license="MIT",
keywords="django app staticfiles twitter bootstrap",
url="https://github.com/55minutes/django-bootstrap-staticfiles",
download_url="http://pypi.python.org/pypi/django-bootstrap-staticfiles",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries',
]
)