forked from suzanshakya/flask-clevercss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (39 loc) · 1.22 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
"""
flask-clevercss
----------
A small Flask extension that makes it easy to use clevercss with your Flask
application.
Links
`````
* `documentation <https://github.com/suzanshakya/flask-clevercss>`_
* `development version
<https://download.github.com/suzanshakya-flask-clevercss-401a017.tar.gz#egg=flask-clevercss-dev`_
"""
from setuptools import setup
setup(
name='flask-clevercss',
version='0.9.1',
url='https://github.com/suzanshakya/flask-clevercss',
license='MIT',
author='Sujan Shakya',
author_email='suzan.shakya@gmail.com',
description='A small Flask extension that adds clevercss support to Flask.',
long_description=__doc__,
packages=['flaskext'],
namespace_packages=['flaskext'],
zip_safe=False,
platforms='any',
install_requires=[
'Flask'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)