-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
54 lines (46 loc) · 1.46 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
47
48
49
50
51
52
53
54
"""
Flask-Themes
------------
Flask-Themes provides infrastructure for theming support in Flask
applications. It takes care of:
- Loading themes
- Rendering templates from themes
- Serving static files like CSS and images from themes
Links
`````
* `documentation <http://packages.python.org/Flask-Themes>`_
* `development version
<http://bitbucket.org/leafstorm/flask-themes/get/tip.gz#egg=Flask-Themes-dev>`_
"""
from setuptools import setup
import sys
requires = ['Flask', 'six']
if sys.version_info < (2, 6):
requires.append('simplejson')
test_requires = ['nose']
setup(
name='Flask-Themes',
version='0.1.4',
url='http://bitbucket.org/leafstorm/flask-themes/',
license='MIT',
author='Matthew \"LeafStorm\" Frazier',
author_email='[email protected]',
description='Provides infrastructure for theming Flask applications',
long_description=__doc__,
packages=['flask_themes'],
zip_safe=False,
platforms='any',
install_requires=requires,
tests_require=test_requires,
test_suite='nose.collector',
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'
]
)