-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
36 lines (33 loc) · 1.16 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
from setuptools import setup, find_packages
from webshell import __version__
DESCRIPTION = "Django application for running python code in your project's environment from django admin."
setup(
name='django-webshell',
version=__version__,
description=DESCRIPTION,
author='Andrey',
author_email='[email protected]',
url='http://github.com/onrik/django-webshell',
download_url='http://github.com/onrik/django-webshell/tarball/master',
license='MIT',
packages=find_packages(),
package_data={'webshell': [
'templates/webshell/*',
'static/css/*',
'static/js/*',
]},
test_suite='runtests.runtests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)