forked from nickjj/flask-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 859 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
26
27
28
#!/usr/bin/env python
import sys
try:
from setuptools import setup
except ImportError:
print('Pyramid-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='Pyramid-Webpack',
version=open('VERSION', 'r').read()[:-1],
author='Robert Duffner',
author_email='rjduffner@gmail.com',
url='https://github.com/rjduffner/pyramid_webpack',
description='Pyramid extension for managing assets with Webpack.',
license='GPLv3',
install_requires=[
'setuptools',
'pyramid'
],
tests_require=['pytest'],
packages=['pyramid_webpack'],
package_data={'Pyramid-Webpack': ['VERSION']},
zip_safe=False,
data_files=[])