码迷,mamicode.com
首页 > 其他好文 > 详细

二 Flask Project 实战 三

时间:2019-04-16 11:56:09      阅读:140      评论:0      收藏:0      [点我收藏+]

标签:scribe   glob   list   lis   safe   false   res   setup.py   rom   

9 Make the Project Installable

9.1 Describe the Project

setup.py
from setuptools import find_packages,setup

setup(
name=‘flaskr‘,
version=‘1.0.0‘,
#tell python what package directories to include
packages=find_packages(),
#inclue static data, such as the static and templates
include_package_data=True,
zip_safe=False,
install_requires=[
‘flask‘,],
)

MANIFEST.in

include flaskr/schema.sql
graft flaskr/static
graft flaskr/templates
global-exclude *.pyc

9.2 install the Project

install: pip install -e .
check: pip list

二 Flask Project 实战 三

标签:scribe   glob   list   lis   safe   false   res   setup.py   rom   

原文地址:https://blog.51cto.com/12408798/2379335

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!