1# -*- coding: utf-8 -*-
2import io
3
4from setuptools import setup, find_packages
5import sys
6
7setup(
8    name='django-pipeline',
9    version='1.6.14',
10    description='Pipeline is an asset packaging library for Django.',
11    long_description=io.open('README.rst', encoding='utf-8').read() + '\n\n' +
12        io.open('HISTORY.rst', encoding='utf-8').read(),
13    author='Timothée Peignier',
14    author_email='timothee.peignier@tryphon.org',
15    url='https://github.com/jazzband/django-pipeline',
16    license='MIT',
17    packages=find_packages(exclude=['tests', 'tests.tests']),
18    zip_safe=False,
19    extras_require={ ':python_version<"3"': ['futures>=2.1.3'] },
20    include_package_data=True,
21    keywords=('django pipeline asset compiling concatenation compression'
22              ' packaging'),
23    classifiers=[
24        'Development Status :: 5 - Production/Stable',
25        'Environment :: Web Environment',
26        'Framework :: Django',
27        'Framework :: Django :: 1.6',
28        'Framework :: Django :: 1.7',
29        'Framework :: Django :: 1.8',
30        'Framework :: Django :: 1.9',
31        'Framework :: Django :: 1.10',
32        'Framework :: Django :: 1.11',
33        'Intended Audience :: Developers',
34        'License :: OSI Approved :: MIT License',
35        'Operating System :: OS Independent',
36        'Programming Language :: Python',
37        'Programming Language :: Python :: 2.7',
38        'Programming Language :: Python :: 3',
39        'Programming Language :: Python :: 3.4',
40        'Programming Language :: Python :: 3.5',
41        'Programming Language :: Python :: 3.6',
42        'Programming Language :: Python :: Implementation :: PyPy',
43        'Topic :: Utilities',
44        'Topic :: Software Development :: Libraries :: Python Modules',
45        'Topic :: Internet :: WWW/HTTP',
46        'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
47    ]
48)
49