-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (33 loc) · 1.11 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
from setuptools import setup, find_packages
with open('README.rst', 'r') as file:
long_desc = file.read()
version = __import__('extraadminfilters').get_version()
setup(
name='django-adminfilters',
version=version,
author='Kevin Van Wilder',
author_email='[email protected]',
packages=find_packages(),
scripts=[],
url='https://github.com/kevwilde/django-extra-admin-filters',
license='BSD',
description='Additional change list filters for django admin.',
long_description=long_desc,
include_package_data=True,
zip_safe=False,
install_requires=(
),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Utilities'
],
)