forked from jgorset/django-shortcuts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 908 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
23
24
25
26
27
28
29
30
31
#!/usr/bin/env python
#-*- coding: utf-8 -*-
from setuptools import setup
readme = open('README.rst').read()
setup(
name = 'django-shortcuts',
version = '1.5.1',
description = "You spend way too much time typing 'python manage.py'",
long_description = readme,
author = "Johannes Gorset",
author_email = "[email protected]",
url = "http://github.com/jgorset/django-shortcuts",
py_modules = ['django_shortcuts'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7'
],
entry_points={
'console_scripts': [
'dj = django_shortcuts:main',
]
},
)