-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (29 loc) · 1.02 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
__author__ = 'sunary'
import os
from setuptools import setup, find_packages
from flask_optimize import VERSION
def __path(filename):
return os.path.join(os.path.dirname(__file__), filename)
with open('README.md') as fo:
readme = fo.read()
with open('LICENSE') as fo:
license = fo.read()
with open('CHANGES.md') as fo:
changes = fo.read()
setup(
name='flask-optimize',
version=VERSION,
author='Sunary [Nhat Vo Van]',
author_email='[email protected]',
maintainer='Sunary [Nhat Vo Van]',
maintainer_email='[email protected]',
platforms='any',
description='Flask optimization using cache, minify html and compress response',
long_description='Flask optimization using cache, minify html and compress response\n',
license=license,
keywords='flask, optimize, cache, minify html, compress, gzip',
url='https://github.com/sunary/flask-optimize',
packages=find_packages(exclude=['docs', 'tests*']),
install_requires=['Flask>=0.10.1',
'htmlmin>=0.1.10'],
)