forked from jeremyjbowers/django-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 894 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 894 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='autocomplete',
version='0.2',
description='The Washington Post\'s app for creating admin foreign key autocompletion fields.',
author='Jeremy Bowers',
author_email='jeremyjbowers@gmail.com',
url='https://github.com/jeremyjbowers/django-autocomplete',
packages = ['autocomplete',],
license = 'MIT',
package_data = {'': [
'static/autocomplete/js/*.js',
'static/autocomplete/css/*.css',
'templates/admin/autocomplete/*.html',
]},
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)