forked from dryan/admin_bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 725 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 725 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env python
from distutils.core import setup
from setuptools import find_packages
setup(
name = 'admin_bootstrap',
version = '0.7.0',
description = 'Django admin templates that are compatible with Twitter Bootstrap version 2.1.0',
author = 'Daniel Ryan',
author_email = 'dryan@dryan.com',
url = 'https://github.com/dryan/admin_bootstrap',
packages = find_packages(),
long_description = open('README', 'r').read(),
license = 'BSD 3 Clause License',
zip_safe = False,
include_package_data = True,
)