forked from ryanberg/django-jumptoadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.19 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
37
38
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-jumptoadmin',
version='0.1.0',
description="Django templatetag for admins to easily change/delete objects from the public-facing site.",
long_description=read('README.rst'),
author='Ryan Berg',
author_email='[email protected]',
license='BSD',
url='http://github.com/ryanberg/django-jumptoadmin/',
packages=[
'jumptoadmin',
'jumptoadmin.templatetags'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
package_data = {
'jumptoadmin': [
'media/jumptoadmin/css/*.css',
'media/jumptoadmin/img/*.png',
'media/jumptoadmin/img/*.gif',
'media/jumptoadmin/js/*.js',
]
},
zip_safe=False, # required to convince setuptools/easy_install to unzip the package data
)