forked from jaysonsantos/jinja-assets-compressor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 622 Bytes
/
setup.py
File metadata and controls
17 lines (16 loc) · 622 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup, find_packages
setup(
name='jac',
author='Jayson Reis',
author_email='santosdosreis@gmail.com',
version='0.14.1',
packages=find_packages(exclude=('tests*', )),
install_requires=open('requirements.txt').readlines(),
description='A Jinja extension (compatible with Flask and other frameworks) to compile and/or compress your assets.',
url='https://github.com/jaysonsantos/jinja-assets-compressor',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
]
)