forked from pistolero/flask-assets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·67 lines (62 loc) · 2.04 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
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python
# coding: utf8
"""
Flask-Assets
-------------
Integrates the ``webassets`` library with Flask, adding support for
merging, minifying and compiling CSS and Javascript files.
"""
from __future__ import with_statement
from setuptools import setup
# Figure out the version; this could be done by importing the
# module, though that requires dependencies to be already installed,
# which may not be the case when processing a pip requirements
# file, for example.
def parse_version(asignee):
import os, re
here = os.path.dirname(os.path.abspath(__file__))
version_re = re.compile(
r'__version__ = (\(.*?\))')
with open(os.path.join(here, 'src', 'flask_assets.py')) as fp:
for line in fp:
match = version_re.search(line)
if match:
version = eval(match.group(1))
return ".".join(map(str, version))
else:
raise Exception("cannot find version")
version = parse_version('__version__')
webassets_version = parse_version('__webassets_version__')
setup(
name='Flask-Assets',
version=version,
url='http://github.com/miracle2k/flask-assets',
license='BSD',
author='Michael Elsdoerfer',
author_email='[email protected]',
description='Asset management for Flask, to compress and merge ' \
'CSS and Javascript files.',
long_description=__doc__,
py_modules=['flask_assets'],
package_dir={'': 'src'},
zip_safe=False,
platforms='any',
install_requires=[
'Flask>=0.8',
'webassets==%s' % webassets_version,
],
classifiers=[
'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'
],
test_suite='nose.collector',
tests_require=[
'nose',
'flask-script'
],
)