-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
79 lines (61 loc) · 2.29 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# coding=utf-8
# :bc: Not importing unicode_literals because in Python 2 distutils,
# some values are expected to be byte strings.
from __future__ import absolute_import, division, print_function
from codecs import StreamReader, open
from distutils.version import LooseVersion
from os.path import dirname, join, realpath
from setuptools import setup
from setuptools.version import __version__
##
# Because of the way we declare dependencies here, we need a more recent
# version of setuptools.
# https://www.python.org/dev/peps/pep-0508/#environment-markers
if LooseVersion(__version__) < LooseVersion('20.5'):
raise EnvironmentError('Django Filters requires setuptools 20.5 or later.')
##
# Load long description for PyPi.
readme = join(dirname(realpath(__file__)), 'README.rst')
with open(readme, 'r', 'utf-8') as f: # type: StreamReader
long_description = f.read()
##
# Off we go!
setup(
name = 'filters-django',
description = 'Adds filters for Django-specific features.',
url = 'https://filters.readthedocs.io/',
version = '1.0.5',
packages = ['filters_django'],
# Install package filters into the global registry.
entry_points = {
'filters.extensions': [
'Model = filters_django:Model',
],
},
long_description = long_description,
install_requires = [
# Django 2.0 does not support Python 3.
# Good on them, but we have legacy project to support over here in
# filters land (:
'Django; python_version >= "3.0"',
'Django < 2.0; python_version < "3.0"',
'filters >= 1.2.2',
'six',
],
license = 'MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Filters',
],
keywords = 'data validation, django',
author = 'Phoenix Zerin',
author_email = 'phoenix.zerin@eflglobal.com',
)