Fixed #26221 -- Used find_packages() in reusable apps tutorial.
Otherwise the migrations package won't be included in the tarball.
This commit is contained in:
parent
043383e3f3
commit
11af73eaeb
|
@ -193,7 +193,7 @@ this. For a small app like polls, this process isn't too difficult.
|
||||||
:filename: django-polls/setup.py
|
:filename: django-polls/setup.py
|
||||||
|
|
||||||
import os
|
import os
|
||||||
from setuptools import setup
|
from setuptools import find_packages, setup
|
||||||
|
|
||||||
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
|
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
|
||||||
README = readme.read()
|
README = readme.read()
|
||||||
|
@ -204,7 +204,7 @@ this. For a small app like polls, this process isn't too difficult.
|
||||||
setup(
|
setup(
|
||||||
name='django-polls',
|
name='django-polls',
|
||||||
version='0.1',
|
version='0.1',
|
||||||
packages=['polls'],
|
packages=find_packages(),
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
license='BSD License', # example license
|
license='BSD License', # example license
|
||||||
description='A simple Django app to conduct Web-based polls.',
|
description='A simple Django app to conduct Web-based polls.',
|
||||||
|
|
Loading…
Reference in New Issue