summaryrefslogtreecommitdiff
path: root/MANIFEST.in
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: remove unused filemattip2019-05-201-1/+0
|
* BENCH: convert bencmarks to asv formatmattip2019-05-201-1/+2
| | | | | | | remove files that were part of the origal repo rework randomgen docs to integrate with numpy and fix some links remove convenience functions, require explicit call to gen.brng move code out of numpy.random.randomgen into numpy.random
* MAINT: rename LICENSE_bundled.txt to LICENSES_bundled.txtRalf Gommers2019-05-071-1/+1
| | | | Finally seems to make the GitHub license detection mechanism happy
* REL: include README.md in sdistRalf Gommers2019-05-061-0/+1
|
* BLD: prune LICENSE_bundled.txt in MANIFEST.inRalf Gommers2019-05-061-0/+3
|
* BUILD: remove unused filemattip2019-04-131-1/+0
|
* BLD: fix include list for sdist building.Ralf Gommers2019-03-041-2/+5
| | | | Closes gh-11927
* MAINT: include benchmarks, complete docs, dev tool files in sdist.Ralf Gommers2018-09-021-12/+19
|
* MAINT: move unchanging, non-api files to commonmattip2018-08-211-2/+2
|
* MAINT: Package `tools/allocation_tracking`John Kirkham2018-06-121-0/+1
| | | | Ensure `tools/allocation_tracking` is included in `sdist`s.
* MAINT: Fix nose features to work on pytestxoviat2017-12-221-0/+1
|
* BLD: Update MANIFEST.inCharles Harris2017-11-291-1/+2
| | | | Exclude more development artifacts and include the `tox.ini` file.
* MAINT: remove outdated doc/f2py content.Ralf Gommers2017-06-181-1/+0
| | | | | This content is not part of https://docs.scipy.org/doc/numpy/f2py/ (that's built from doc/source/f2py) and is >10 years old.
* BUG: fix TravisCI test issues when using setuptools unconditionally.Ralf Gommers2016-01-161-1/+0
| | | | Also remove all mentions of setupegg.py from the documentation.
* BUG: Include relevant files from numpy/linalg/lapack_lite in sdist.Charles Harris2015-11-241-0/+1
| | | | | | | | After 1e436a5 *.h and *.c files from numpy/linalg/lapack_lite were no longer included in source distributions. Fix this by adding them to MANIFEST.in. Closes #6694.
* BUG: fix MANIFEST.in for removal of a file in gh-8047.Ralf Gommers2015-10-301-1/+0
|
* BUG: Add cblasfuncs.c and python_xerbla.c to MANIFEST.inCharles Harris2015-09-231-0/+3
| | | | | | | | Those files in numpy/core/src/multiarray were only included in source distributions when HAVE_CBLAS was defined, making the distribution contents depend on the local configuration. Closes #6343.
* BLD: Move numpy.build_utils -> numpy._build_utils, add to MANIFEST.inAlex Willmer2015-08-051-0/+2
| | | | | This fixes the distutils built from an sdist (e.g. under tox), without including _build_utils in binary distributions or the installed numpy.
* MAINT: Move doc/swig to tools/swig.Charles Harris2014-03-121-1/+1
| | | | | | | Also update MANIFEST.in and documentation to reflect the move. The discussion of this change is at #2384. Closes #2384. Closes #4374.
* MAINT: Remove no longer existing files from MANIFEST.in.Charles Harris2014-03-121-3/+0
|
* BLD: exclude compiled python files in source distributionJulian Taylor2014-01-261-0/+2
| | | | | they could accidentally appear in the source distribution if sdist was run after a make -C doc.
* BLD: include f2py docs in source distributionJulian Taylor2014-01-261-0/+1
| | | | update was forgotten in the move to the doc/folder
* MAINT: ensure the sphinx theme gets included in source tarballsPauli Virtanen2013-07-251-0/+1
|
* BUG: include mtrand cython files in sdistJulian Taylor2013-05-281-0/+2
| | | | the files are required to do a full source rebuild.
* DEP: Remove more references to scons related files.Charles Harris2013-01-141-3/+0
| | | | | | | These references were in MANIFEST.in, doc/summarize.py, release.sh, and numpy/testing/noseclasses.py and involved scons files that have been removed, mostly setupscons.py and setupsconsegg.py that were in the top level.
* BLD: do not install swig/cython/pyrex files. See #1791.Ralf Gommers2011-04-021-0/+3
| | | | | This is not a complete fix yet. Should be handled correctly in binary installers.
* ENH: include /*.txt etc. in source dist only, rather than installing itPauli Virtanen2010-08-041-1/+4
|
* updating manifest such that python setup.py sdist produces a tarball from ↵Ilan Schnell2009-11-191-2/+3
| | | | which one can build
* Fix typo.David Cournapeau2009-05-301-1/+1
|
* Forgot to include SConscript files as well as SConstruct in manifest template.David Cournapeau2009-05-301-1/+1
|
* Do not add doc sources through add_data_dir: it will put the docs alongside ↵David Cournapeau2008-12-281-0/+6
| | | | numpy, as a separate package, which is not what we want. Use the manifest instead, since that's the only way I know of to include something in sdist-generated tarballs.
* Add code-generator files in MANIFEST because distutils does not pick them up.David Cournapeau2008-07-281-1/+1
|
* Fixing MANIFEST.in on win32.David Cournapeau2008-07-281-1/+1
|
* Fix double line in MANIFEST.in.David Cournapeau2008-04-231-1/+0
|
* Add some files in MANIFEST.in which cannot be picked up by distutils.David Cournapeau2008-04-231-0/+7
|
* Added LICENSE.txt to distribution. Fixed f2py check_and_fix_dimensions to ↵Travis Oliphant2006-01-221-0/+1
| | | | not reverse dimensions.
* MANIFEST.in clean upPearu Peterson2005-12-301-14/+5
|
* Added string initialization conversion to chararray.Travis Oliphant2005-12-291-1/+1
|
* Added records unittest for fromfile method. Included file testdata.fits ↵chanley2005-12-291-0/+1
| | | | file for use in test.
* Moved inclusion of files from MANIFEST.in to proper setup.py files.Pearu Peterson2005-10-051-4/+4
|
* Fixed object put bug..Travis Oliphant2005-10-051-1/+2
|
* Added f2py2e as scipy.f2py, improved scipy.distutils, fixed setup.py files, etcPearu Peterson2005-09-291-8/+8
|
* r3493@803638d6: kern | 2005-09-27 19:52:10 -0700Robert Kern2005-09-281-2/+4
| | | | get_scipy_include() docs and fix; f2py updated to use get_scipy_include(); mtrand integration
* Getting ready to release beta.Travis Oliphant2005-09-281-0/+11
|
* Removed obsolute file. Using MANIFEST.in should be avoided, all source files ↵Pearu Peterson2005-01-281-1/+0
| | | | should be listed in setup_...py files.
* Added scipy_base/_compiled_base.c since it is used at build time butjmiller2005-01-281-0/+1
| | | | | not included literally in any Extension, only as a renamed copy: e.g. _na_compiled_base.c.
* Removed .build_py_ignore files: the feature didn't work properly, e.g. ↵Pearu Peterson2003-10-231-5/+0
| | | | building binaries failed. Added sample_site.cfg to data_files. Emptied MANIFEST.in (later we can consider removing it).
* Added setup_*.py files to MANIFEST.in. It is possible that they were missing ↵Pearu Peterson2003-10-211-0/+4
| | | | due to .build_py_ignore feature, so, we might consider dropping the feature.
* Introduced MANIFEST.in that includes *.inc files to sdistPearu Peterson2003-08-071-0/+1