Move the spawning source code up a level in the directory

That pesky src/ dir has always bothered me

Change-Id: I242538c34db43301fde056c3c16015a3d39b9efe
This commit is contained in:
R. Tyler Croy 2011-03-12 21:16:41 -08:00
parent 9e1221d906
commit cae56173cd
15 changed files with 3 additions and 6 deletions

View File

@ -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 *

View File

@ -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
@ -50,8 +48,8 @@ setup(
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={