-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (20 loc) · 878 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- coding:utf-8 -*-
from distutils.core import setup
setup(
name = 'django-shell',
version = '0.1',
author = 'Evgeny V. Generalov',
author_email = '[email protected]',
packages = ['django_shell', 'django_shell.management', 'django_shell.management.commands'],
description = 'A Python shell for Django',
long_description = open('README.md').read(),
classifiers = ['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)