-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsetup.py
32 lines (30 loc) · 1 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
from setuptools import setup, find_packages
setup(
name='django-simple-autocomplete',
description='App enabling the use of jQuery UI autocomplete widget for ModelChoiceFields with minimal configuration required.',
long_description = open('README.rst', 'r').read() + open('AUTHORS.rst', 'r').read() + open('CHANGELOG.rst', 'r').read(),
version='1.11',
author='Praekelt Consulting',
author_email='[email protected]',
license='BSD',
url='http://github.com/praekelt/django-simple-autocomplete',
packages = find_packages(),
dependency_links = [
],
install_requires = [
'django',
],
tests_require=[
'tox',
],
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Django",
"Intended Audience :: Developers",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
zip_safe=False,
include_package_data=True
)