-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (34 loc) · 1.23 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
from setuptools import setup, find_packages
setup(
name='django-selectable-filter',
version='0.1.5',
description='The filterspec to the Django administration that allow you to filter records using the resources of django-selectable library',
author='Gustavo Santana de Oliveira',
author_email='[email protected]',
url='https://github.com/Gustavosdo/django-selectable-filter',
keywords=[
'django admin',
'django filter selectable',
],
install_requires=[
"Django",
"django-selectable",
],
packages=find_packages(),
include_package_data=True,
zip_safe=False,
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Framework :: Django :: 1.7',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Environment :: Web Environment',
'Operating System :: OS Independent'
],
license='MIT',
)