forked from nickjj/flask-webpack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (29 loc) · 994 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
29
30
31
32
33
34
#!/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)
long_description = None
with open('README.rst') as f:
long_description = f.read()
setup(
name='Flask-Webpack-Fork',
version=open('VERSION', 'r').read()[:-1],
author='Nick Janetakis, 5kyc0d3r',
author_email='[email protected]',
url='https://github.com/5kyc0d3r/flask-webpack',
description='Flask extension for managing assets with Webpack.',
long_description=long_description,
long_description_content_type='text/x-rst',
license='GPLv3',
install_requires=['setuptools', 'Flask'],
tests_require=['pytest'],
packages=['flask_webpack'],
package_data={'Flask-Webpack-Fork': ['VERSION']},
zip_safe=False,
data_files=[]
)