forked from litchfield/django-bootify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (33 loc) · 1.2 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
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import os
root = os.path.dirname(os.path.abspath(__file__))
os.chdir(root)
VERSION = '0.1.1'
# Make data go to the right place.
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
setup(
name='django-bootify',
version=VERSION,
description="Bootstrap 3 support for Django 1.6+",
long_description="Automagically bash Django 1.6+ with some sense of Bootstrap 3 friendliness, plus some tools.",
author="Simon Litchfield",
author_email="simon@s29.com.au",
url="http://github.com/litchfield/django-bootify",
license="MIT License",
platforms=["any"],
packages=['bootify'],
#data_files=[(template_dir, templates)],
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
],
include_package_data=True,
)