From 2c33e23bf3f06bc69d348aa7c0aea2c23b10c322 Mon Sep 17 00:00:00 2001 From: jamesgk Date: Mon, 5 Oct 2015 15:58:58 -0700 Subject: [PATCH] Make "python setup.py install" actually work. convert_curves is just a module (file), not a package (directory). --- .gitignore | 1 + setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0d20b6487..6f97ca1af 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ +build *.pyc diff --git a/setup.py b/setup.py index df4374f0b..112609dc3 100644 --- a/setup.py +++ b/setup.py @@ -4,6 +4,6 @@ from distutils.core import setup setup( name='ConvertCurves', version='1.0', - packages=['convert_curves'], + py_modules=['convert_curves'], package_dir={'': 'Lib'} )