forked from nickjj/flask-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 815 Bytes
/
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
#!/usr/bin/env python
import sys
try:
from setuptools import setup
except ImportError:
print('Flask-Webpack needs setuptools in order to build. ' +
'Install it using your package manager ' +
'(usually python-setuptools) or via pip (pip install setuptools).')
sys.exit(1)
setup(name='Flask-Webpack',
version=open('VERSION', 'r').read()[:-1],
author='Nick Janetakis',
author_email='[email protected]',
url='https://github.com/nickjj/flask-webpack',
description='Flask extension for managing assets with Webpack.',
license='GPLv3',
install_requires=['setuptools', 'Flask'],
tests_require=['pytest'],
packages=['flask_webpack'],
package_data={'Flask-Webpack': ['VERSION']},
zip_safe=False,
data_files=[])