1. 22 Mar, 2014 10 commits
  2. 17 Mar, 2014 1 commit
  3. 16 Mar, 2014 10 commits
  4. 12 Feb, 2014 2 commits
    • Wyatt Lee Baldwin's avatar
      Add support for PEP 420 namespace packages to find_packages() · f0e9aa7a
      Wyatt Lee Baldwin authored
      On Python 3.3+, `find_packages()` now considers any subdirectory of the
      start directory that's not a regular package (i.e., that doesn't have an
      `__init__.py`) to be a namespace package. Because this will often
      include non-package directories, a new `include` argument has been added
      to `find_packages()`.
      
      `include` can make it easier to narrow which directories are considered
      packages instead of having to specify numerous excludes. In
      particular, it's an easy way to keep top-level, non-source directories
      from being considered packages.
      
      The other way this supports PEP 420 is by making sure `__pycache__`
      directories are never added to the list of packages.
      
      Refs issue #97
      f0e9aa7a
    • Wyatt Lee Baldwin's avatar
      Add support for PEP 420 namespace packages to find_packages() · 80fc5b6d
      Wyatt Lee Baldwin authored
      On Python 3.3+, `find_packages()` now considers any subdirectory of the
      start directory that's not a regular package (i.e., that doesn't have an
      `__init__.py`) to be a namespace package.
      
      The other way this supports PEP 420 is by making sure `__pycache__`
      directories are never added to the list of packages.
      
      Fixes issue #97
      80fc5b6d
  5. 16 Mar, 2014 5 commits
  6. 12 Feb, 2014 1 commit
  7. 16 Mar, 2014 1 commit
  8. 12 Feb, 2014 3 commits
  9. 15 Mar, 2014 5 commits
  10. 14 Mar, 2014 2 commits
    • Jason R. Coombs's avatar
      Merge · 7fb8989e
      Jason R. Coombs authored
      7fb8989e
    • Jason R. Coombs's avatar
      Remove special handling of 'no_compile' option with comment about making... · e72e8676
      Jason R. Coombs authored
      Remove special handling of 'no_compile' option with comment about making DISTUTILS_DEBUG work right. While testing on Python 2.6 and later, I was unable to evoke any abberant or distinct behavior by removing the value (with DISTUTILS_DEBUG enabled and using variations of --compile and --no-compile). Therefore, I believe that whatever was the motivation for adding the attribute (in 2c91c12dc9b1), its purpose has passed.
      e72e8676