-
Notifications
You must be signed in to change notification settings - Fork 47
/
setup.py
39 lines (34 loc) · 1.27 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
36
37
38
39
# encoding: utf-8
import os
from setuptools import find_packages, setup
VERSION = '1.0.3'
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
description = 'Use dropdowns in Django admin list filter'
long_description = description
if os.path.exists('README.txt'):
long_description = open('README.txt').read()
setup(
name='django-admin-list-filter-dropdown',
version=VERSION,
packages=find_packages(),
include_package_data=True,
license='MIT License',
description=description,
long_description=long_description,
url='https://github.com/mrts/django-admin-list-filter-dropdown',
download_url='https://github.com/mrts/django-admin-list-filter-dropdown/archive/%s.zip' % VERSION,
author='Mart Sõmermaa',
author_email="[email protected]",
keywords=['django', 'admin', 'filter', 'dropdown'],
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)