-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (32 loc) · 851 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
35
import io
from setuptools import find_packages, setup
with io.open('README.md', 'rt', encoding='utf8') as f:
readme = f.read()
setup(
name='flaskr',
version='1.0',
url='http://flask.pocoo.org/docs/tutorial/',
license='BSD',
maintainer='Pallets team',
maintainer_email='contact@palletsprojects.com',
description='The basic blog app built in the Flask tutorial.',
long_description=readme,
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'flask>=1.0',
'flask-babel>=0.12',
'flask-migrate>=2.5',
'flask-sqlalchemy>=2.4',
'flask-WTF>=0.14',
'wtforms-components>=0.10',
'bootstrap-flask>=1.2',
],
extras_require={
'test': [
'pytest',
'coverage',
],
},
)