Skip to content

Commit 06c67a7

Browse files
committed
Add setup.py
1 parent c653ad8 commit 06c67a7

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

setup.py

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name='django-exadmin',
5+
version='0.1.0',
6+
description='New style and free plugin django admin module, UI base bootstrap2.',
7+
author='TM (sshwsfc)',
8+
author_email='[email protected]',
9+
url='http://github.com/sshwsfc/django-exadmin',
10+
download_url='',
11+
packages=find_packages(),
12+
include_package_data=True,
13+
zip_safe=False,
14+
classifiers=[
15+
'Development Status :: 3 - Alpha',
16+
'Environment :: Web Environment',
17+
'Framework :: Django',
18+
'Intended Audience :: Developers',
19+
'License :: OSI Approved :: BSD License',
20+
'Operating System :: OS Independent',
21+
'Programming Language :: Python',
22+
'Framework :: Django',
23+
]
24+
)

0 commit comments

Comments
 (0)