我正在编写一个Django应用程序,对框架和python来说是一个新手。我在这里遵循教程:https://docs.djangoproject.com/en/1.9/intro/reusable-apps/我目前正在打包并安装从本教程创建的应用程序:https://docs.djangoproject.com/en/1.9/intro/tutorial01/
这是我的第一个Django应用程序,也是我第一次使用Python。
目前我的setup.py文件如下所示:
import os
from setuptools import find_packages, setup
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name= 'django-polls',
version='0.1',
packages=find_packages(),
include_package_date=True,
license='BSD License', #example license
description = 'A simple Django app to conduct Web-based polls.',
long_description = README,
url='https://www.example.com',
author='Your Name',
author_email='yourname@example.com',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.9.6', # replace "X.Y" as appropriate
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License', # example license
'Operating System :: OS Independent',
'Programming Language :: Python',
# Replace these appropriately if you are stuck on Python 2.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
)
我的MANIFEST.in文件如下所示:
include LICENSE
include README.rst
recursive-include polls/static *
recursive-include polls/templates *
recursive-include docs *
我的文件目录如下:
|polls
|__init.py__
|admin.py
|apps.py
|models.py
|tests.py
|urls.py
|views.py
|__pychache__
|# pycachestuff
|migrations
|# migrations stuff
|static
|polls
|images
|background.gif
|style.css
|templates
|polls
|detail.html
|index.html
|results.html
|docs
|
当我运行安装程序时,生成的.zip工作正常,所有目录都包含在内。但是,当我跑
时pip install C:\Path\To\dist\django-polls-0.1.zip -t C:\Path\To\Package
仅 安装主要民意调查目录和迁移下的内容。它忽略了子目录static和templates。它也忽略了文档,但文件夹是空的,教程让我相信空目录会被忽略。
有谁知道如何解决这个问题?我看到的一些答案建议使用package_data或data_files,但我对python很新,我似乎无法正确使用语法(或者这些答案是错误的)。
感谢您的时间