Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
setup ready to pypi register
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasmiranda committed Dec 20, 2012
1 parent b2371f0 commit 539d950
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 17 deletions.
4 changes: 4 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
include README.markdown
recursive-include bootstrap_admin *
recursive-include bootstrap_admin/static *
recursive-include bootstrap_admin/templates *
1 change: 1 addition & 0 deletions bootstrap_admin/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
VERSION = (0, 1, 1)
34 changes: 17 additions & 17 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
from bootstrap_admin import VERSION


template_dirs = [
'templates/admin/auth/user/*.html',
'templates/admin/edit_inline/*.html',
'templates/admin/includes/*.html',
'templates/admin/*.html',
'templates/registration/*.html',
'static/admin/css/*.css',
'static/admin/js/*.js',
'static/admin/js/admin/*.js',
'static/admin/img/*.png',
'templatetags/*',
]
f = open(os.path.join(os.path.dirname(__file__), 'README.markdown'))
readme = f.read()
f.close()

setup(
name='bootstrap_admin',
version='0.1',
description='Responsive Templates para o Django Admin, customizados com Twitter Bootstrap.',
version=".".join(map(str, VERSION)),
description='Twitter Bootstrap Responsive Skin for Django Admin.',
long_description=readme,
author='Douglas Miranda',
author_email='douglasmirandasilva@gmail.com',
url='https://github.com/douglasmiranda/django-admin-bootstrap',
packages=find_packages(),
package_data={'bootstrap_admin': template_dirs},
license='GPL',
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
)

0 comments on commit 539d950

Please sign in to comment.