forked from alesdotio/django-admin-shortcuts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.06 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
from setuptools import setup, find_packages
import os
import admin_shortcuts
CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Topic :: Software Development",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
setup(
author="Ales Kocjancic",
author_email="[email protected]",
name='django-admin-shortcuts',
version=admin_shortcuts.__version__,
description='Add simple and pretty shortcuts to the django admin homepage.',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='https://github.com/alesdotio/django-admin-shortcuts',
packages=find_packages(),
include_package_data = True,
zip_safe = False,
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'Django>=1.2',
],
)