Skip to content
This repository has been archived by the owner on Mar 8, 2018. It is now read-only.

Commit

Permalink
Move the spawning source code up a level in the directory
Browse files Browse the repository at this point in the history
That pesky src/ dir has always bothered me

Change-Id: I242538c34db43301fde056c3c16015a3d39b9efe
  • Loading branch information
R. Tyler Croy committed Mar 13, 2011
1 parent 9e1221d commit cae5617
Show file tree
Hide file tree
Showing 15 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions MANIFEST.in
@@ -1,4 +1,3 @@
include *.txt *.rst *.py
recursive-include src/spawning *.py
recursive-include src/Spawning.egg-info *
recursive-include spawning *.py
recursive-include rc-scripts *
6 changes: 2 additions & 4 deletions setup.py
Expand Up @@ -21,8 +21,6 @@

import sys

# Insert src/ into our path so we can pull the version and include it
sys.path.insert(0, 'src')
from spawning import __version__

from os import path
Expand Down Expand Up @@ -50,8 +48,8 @@
maintainer='R. Tyler Croy',
maintainer_email='tyler@monkeypox.org',
include_package_data = True,
packages = find_packages('src'),
package_dir = {'': 'src'},
packages = ['spawning'],
package_dir = {'': '.'},
version=__version__,
install_requires=install_requires,
entry_points={
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit cae5617

Please sign in to comment.