Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sshwsfc committed Nov 19, 2012
1 parent c653ad8 commit 06c67a7
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
from setuptools import setup, find_packages

setup(
name='django-exadmin',
version='0.1.0',
description='New style and free plugin django admin module, UI base bootstrap2.',
author='TM (sshwsfc)',
author_email='sshwsfc@gmail.com',
url='http://github.com/sshwsfc/django-exadmin',
download_url='',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
]
)

0 comments on commit 06c67a7

Please sign in to comment.