From c1f3adc019452808ea85dbb14661979c5c277eb8 Mon Sep 17 00:00:00 2001 From: Jon Bernard Date: Fri, 15 Jan 2016 16:56:31 -0500 Subject: Move implementation and tests back to directories I think keeping the physical separation is helpful, especially as more features get added. --- setup.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index f7f62b4..eae2667 100644 --- a/setup.py +++ b/setup.py @@ -1,9 +1,10 @@ from setuptools import setup +from dotfiles import __version__ setup( name='dotfiles', - version='0.7.dev0', + version=__version__, author='Jon Bernard', author_email='jbernard@tuxion.com', description='Easily manage your dotfiles', @@ -12,9 +13,7 @@ setup( open('LICENSE.rst').read() + '\n\n' + open('HISTORY.rst').read()), license='ISC', - py_modules=[ - 'dotfiles' - ], + packages=['dotfiles'], setup_requires=[ 'pytest-runner', 'flake8', @@ -28,7 +27,7 @@ setup( ], entry_points={ 'console_scripts': [ - 'dotfiles=dotfiles:cli', + 'dotfiles=dotfiles.dotfiles:cli', ], }, classifiers=[ -- cgit v1.2.3