Skip to content

Commit

Permalink
Update setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
sshwsfc committed Apr 23, 2013
1 parent 179b3b9 commit 008ca8a
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 6 deletions.
19 changes: 13 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,24 +1,31 @@
from setuptools import setup, find_packages
from setuptools import setup

setup(
name='django-xadmin',
version='0.1.0',
description='New style and free plugin django admin module, UI base bootstrap2.',
author='TM (sshwsfc)',
description='Drop-in replacement of Django admin comes with lots of goodies, fully extensible with plugin support, pretty UI based on Twitter Bootstrap.',
long_description=open('README.md').read(),
author='sshwsfc',
author_email='sshwsfc@gmail.com',
url='http://github.com/sshwsfc/django-xadmin',
url='http://xadmin.io',
download_url='',
packages=find_packages(),
packages=['xadmin'],
include_package_data=True,
zip_safe=False,
keywords=['admin', 'django', 'xadmin', 'bootstrap'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Programming Language :: JavaScript",
'Programming Language :: Python',
'Framework :: Django',
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
]
)
2 changes: 2 additions & 0 deletions xadmin/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
from xadmin.sites import AdminSite, site

__version__ = '0.1.0'

def autodiscover():
"""
Auto-discover INSTALLED_APPS admin.py modules and fail silently when
Expand Down

0 comments on commit 008ca8a

Please sign in to comment.