forked from cobrateam/django-htmlmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (25 loc) · 826 Bytes
/
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
# -*- coding: utf-8 -*-
# Copyright 2013 django-htmlmin authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
from setuptools import setup, find_packages
from htmlmin import __version__
README = open('README.rst').read()
setup(
name='django-htmlmin',
version=__version__,
description='html minify for django',
long_description=README,
author='CobraTeam',
author_email='[email protected]',
packages=find_packages(),
include_package_data=True,
test_suite='nose.collector',
install_requires=['argparse', 'beautifulsoup4', 'html5lib'],
tests_require=['nose', 'coverage', 'django'],
entry_points={
'console_scripts': [
'pyminify = htmlmin.commands:main',
],
},
)