summaryrefslogtreecommitdiff
path: root/MANIFEST.in
AgeCommit message (Collapse)Author
2025-11-21Skipped scripts/ folder from built release artifacts.Natalia
2024-06-24Migrated setuptools configuration to pyproject.toml.Claude Paroz
This branch migrates setuptools configuration from setup.py/setup.cfg to pyproject.toml. In order to ensure that the generated binary files have consistent casing (both the tarball and the wheel), setuptools version is limited to ">=61.0.0,<69.3.0". Configuration for flake8 was moved to a dedicated .flake8 file since it cannot be configured via pyproject.toml. Also, __pycache__ exclusion was removed from MANIFEST and the extras/Makefile was replaced with a simpler build command. Co-authored-by: Nick Pope <nick@nickpope.me.uk>
2023-02-09Fixed #34248 -- Added tox.ini to MANIFEST.in.Syed Sajjad Hussain Shah
Co-authored-by: Syed Sajjad Hussain Shah <syed.sajjad@H7FKF7K6XD.local>
2020-05-14Fixed #31524 -- Removed minified static assets from the admin.Jon Dufresne
2015-12-12Simplified MANIFEST.inNicholas Chammas
2015-09-28Moved and updated Python license.Tim Graham
2015-07-25Simplified MANIFEST.inTim Graham
Also fixed missing django/contrib/auth/common-passwords.txt.gz file and added JavaScript tests.
2015-02-11Moved contrib.gis tests out of contrib.Tim Graham
2015-02-11Moved contrib.auth tests out of contrib.Tim Graham
2015-02-11Moved contrib.sitemaps tests out of contrib.Tim Graham
2015-02-11Moved contrib.flatpages tests out of contrib.Tim Graham
2015-01-03Removed formtools entries from MANIFEST.in.Berker Peksag
2014-12-23Added RasterSource/GDALBand GDAL objectsClaude Paroz
Based on Daniel Wiesmann's raster branch. Thanks Daniel Wiesmann and Tim Graham for the reviews. Refs #23804.
2014-07-22Fixed #23072 -- Added missing formtools test templates in tarballRaphaël Hertzog
The lack of this file breaks the test suite.
2014-04-18Fixed #22464 - included contrib/gis/static in tarballMoayad Mardini
After switching to setuptools in commit 66f546b, contrib/gis/static isn't included in tarball anymore, this commit adds that path to be `recursive-include` in `MANIFEST.in`
2014-03-21Removed contrib.comments per deprecation timeline.Tim Graham
2014-01-12Added license info for the weakref backportsFlorian Apolloner
2013-05-01Fixed #19252 -- Added support for wheel packages.Florian Apolloner
Signed-off-by: Jannis Leidel <jannis@leidel.info>
2012-12-29Removed django.contrib.databrowse.Aymeric Augustin
RIP -- you served us well.
2012-10-06Ensure we ignore __pycache__ PEP 3174 dirs in a few more places.Ramiro Morales
2012-08-29Fixed #18874 -- Updated new name of README.rst to auxiliary filesBruno Renié
2012-04-29Fixed #18023 -- Removed bundled simplejson.Aymeric Augustin
And started the deprecation path for django.utils.simplejson. Thanks Alex Ogier, Clueless, and other contributors for their work on the patch.
2011-07-01Fixed the manifest template to correctly ship admin's static files.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-06-19Fixed #12202 -- Removed hardcoded password reset subject and added a ↵Jannis Leidel
subject_template_name parameter to the password_reset view. Thanks, Ramiro Morales, Claude Paroz and agabel. git-svn-id: http://code.djangoproject.com/svn/django/trunk@16438 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-03-16Added GIS test fixture directories to the MANIFEST.Justin Bronn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15860 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-03-05Add formtools test templates to MANIFEST.Karen Tracey
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15762 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2011-01-21Added app translation files to the package manifest template.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15278 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-12-30Fixed #14990 -- Added sitemaps tests templates to manifest template.Jannis Leidel
git-svn-id: http://code.djangoproject.com/svn/django/trunk@15114 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-12More cleanups for the manifest file.Russell Keith-Magee
git-svn-id: http://code.djangoproject.com/svn/django/trunk@13760 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-09-10Fixed #14245 -- Added some files and paths missing from the MANIFEST.in. ↵Russell Keith-Magee
Thanks to pmclanahan for the report. git-svn-id: http://code.djangoproject.com/svn/django/trunk@13719 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2010-01-27Updated MANIFEST.in to include the GeoDjango test fixture directories.Justin Bronn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@12311 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-05-02Removed directories that no longer exist from the packaging manifest.Justin Bronn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10664 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2009-03-30Ensure Django's test suite is included when we build release packages.James Bennett
git-svn-id: http://code.djangoproject.com/svn/django/trunk@10230 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-17Added the GEOS and GDAL interface licenses to the manifest template.Justin Bronn
git-svn-id: http://code.djangoproject.com/svn/django/trunk@9480 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-17Fixed #9613 -- Added a bunch of files that were missing when the distributionMalcolm Tredinnick
tarball is created. Thanks, Justin Bronn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9478 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-11-16Added GeoDjango template and test data directories to the manifest template ↵Justin Bronn
so that they are included when building the release tarball with `sdist`. git-svn-id: http://code.djangoproject.com/svn/django/trunk@9473 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2008-08-17Fixed #8374 -- Add the admindocs/templates/ directory to the source tarballMalcolm Tredinnick
that is built. git-svn-id: http://code.djangoproject.com/svn/django/trunk@8423 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-18Fixed #4077 -- Added Databrowse templates to MANIFEST.in. Thanks, Dirk DatzertAdrian Holovaty
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5025 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-04-03Fixed #3338, #3536, #3796 -- Fixed a bunch of setup and build problems in aMalcolm Tredinnick
portable fashion. That took a *lot* longer to debug than I thought it would, so let's try not to break it. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4912 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-02-12Refs #3338 -- Partially fix rpm packaging problems. There is still one issueMalcolm Tredinnick
remaining with how we construct the version numbers, but this change is useful nonetheless. Patch from Dirk Datzert. git-svn-id: http://code.djangoproject.com/svn/django/trunk@4490 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-10-16Changed setup.py to use standard distutils instead of setuptools. This means ↵Adrian Holovaty
installing Django no longer requires a easy_install, setuptools or a working Internet connection, greatly simplifying things. git-svn-id: http://code.djangoproject.com/svn/django/trunk@3906 bcc190cf-cafb-0310-a4f2-bffc1f526a37