|
3 | 3 | from setuptools import setup |
4 | 4 |
|
5 | 5 | setup( |
6 | | - name='django-ajax-selects', |
7 | | - version='1.7.1', |
8 | | - description='Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.', |
9 | | - author='Chris Sattinger', |
10 | | - |
11 | | - url='https://github.com/crucialfelix/django-ajax-selects/', |
12 | | - packages=['ajax_select'], |
13 | | - package_data={ |
14 | | - 'ajax_select': |
15 | | - [ |
16 | | - '*.py', |
17 | | - '*.txt', |
18 | | - '*.md', |
19 | | - 'static/ajax_select/css/*', |
20 | | - 'static/ajax_select/images/*', |
21 | | - 'static/ajax_select/js/*', |
22 | | - 'templates/ajax_select/*.html' |
23 | | - ] |
24 | | - }, |
25 | | - include_package_data=True, |
26 | | - zip_safe=False, |
27 | | - license="MIT", |
28 | | - classifiers=[ |
29 | | - "Programming Language :: Python", |
30 | | - "Programming Language :: Python :: 2", |
31 | | - "Programming Language :: Python :: 3", |
32 | | - "Development Status :: 5 - Production/Stable", |
33 | | - 'Environment :: Web Environment', |
34 | | - "Intended Audience :: Developers", |
35 | | - "License :: OSI Approved :: MIT License", |
36 | | - "Operating System :: OS Independent", |
37 | | - "Topic :: Software Development :: Libraries :: Python Modules", |
38 | | - "Topic :: Software Development :: User Interfaces", |
39 | | - "Framework :: Django", |
40 | | - ], |
41 | | - long_description="""\ |
| 6 | + name="django-ajax-selects", |
| 7 | + version="1.8.0", |
| 8 | + description="Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.", |
| 9 | + author="Chris Sattinger", |
| 10 | + |
| 11 | + url="https://github.com/crucialfelix/django-ajax-selects/", |
| 12 | + packages=["ajax_select"], |
| 13 | + package_data={ |
| 14 | + "ajax_select": [ |
| 15 | + "*.py", |
| 16 | + "*.txt", |
| 17 | + "*.md", |
| 18 | + "static/ajax_select/css/*", |
| 19 | + "static/ajax_select/images/*", |
| 20 | + "static/ajax_select/js/*", |
| 21 | + "templates/ajax_select/*.html", |
| 22 | + ] |
| 23 | + }, |
| 24 | + include_package_data=True, |
| 25 | + zip_safe=False, |
| 26 | + license="MIT", |
| 27 | + classifiers=[ |
| 28 | + "Programming Language :: Python", |
| 29 | + "Programming Language :: Python :: 2", |
| 30 | + "Programming Language :: Python :: 3", |
| 31 | + "Development Status :: 5 - Production/Stable", |
| 32 | + "Environment :: Web Environment", |
| 33 | + "Intended Audience :: Developers", |
| 34 | + "License :: OSI Approved :: MIT License", |
| 35 | + "Operating System :: OS Independent", |
| 36 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 37 | + "Topic :: Software Development :: User Interfaces", |
| 38 | + "Framework :: Django", |
| 39 | + ], |
| 40 | + long_description="""\ |
42 | 41 | Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete. |
43 | 42 |
|
44 | 43 | - Customize search query |
|
50 | 49 | - Integrate with other UI elements elsewhere on the page using the javascript API |
51 | 50 | - Works in Admin as well as in normal views |
52 | 51 |
|
53 | | -- Django >=1.8, <=2.1 |
54 | | -- Python >=2.7, <=3.7 |
55 | | -""" |
| 52 | +- Django >=1.8, <3.0 |
| 53 | +- Python >=2.7, >=3.5 |
| 54 | +""", |
56 | 55 | ) |
0 commit comments