-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·55 lines (49 loc) · 1.52 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
55
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Flask-Versioned
---------------
Add version info to file paths. The default configuration will prefix a
timestamp to and make the path absolute. Paths must be files, if a path
is unexisting or is a directory, an exception will be raised.
Typically used in templates to allow for really long expiration dates of
static content::
<link rel="stylesheet" href="{{"static/css/style.css"|versioned}}">
Links
`````
* `development version
<http://github.com/pilt/flask-versioned/zipball/master#egg=Flask-Versioned-dev>`_
"""
from setuptools import setup
setup(
name='Flask-Versioned',
version='0.9.4',
url='http://github.com/pilt/flask-versioned',
license='BSD',
author='Simon Pantzare',
author_email='[email protected]',
description='Add version info to file paths.',
long_description=__doc__,
packages=[
'flaskext',
'flaskext.versioned',
],
namespace_packages=['flaskext'],
zip_safe=False,
platforms='any',
install_requires=[
'setuptools',
'Flask',
],
test_suite='test_versioned',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)