We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c653ad8 commit 06c67a7Copy full SHA for 06c67a7
1 file changed
setup.py
@@ -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
23
+ ]
24
+)
0 commit comments