-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
28 lines (27 loc) · 957 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
#!/usr/bin/env python
import os
from distutils.core import setup
app_name = "django_admin_autocomplete"
setup(
name = app_name,
version = '0.3',
install_requires = [],
author = "Tim Babych",
author_email = "[email protected]",
description = "Mixin for turning foreignKey fields into autocomplete lookups.",
keywords = "django, admin, autocomplete",
url = "https://github.com/artscoop/django-admin-autocomplete",
package_dir = {app_name:app_name},
packages = [app_name],
package_data = {app_name:['static/*.*', 'static/admin-autocomplete/*.*']},
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development"
],
)