From 7ab6083f53f180ff49b2739a2fb1d3b6269a4a56 Mon Sep 17 00:00:00 2001 From: kennyballou Date: Fri, 1 Feb 2013 18:52:53 -0700 Subject: Refactor, Fix, and Further hack Xenant's rewrite My first hack toward this (major) refactor had a number of mistakes that were (hopefully) corrected. I intend to now write tests for these (may require a bit more refactoring...). But there is also probably a lot more that needs to be done for this. --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c81da5c..c283570 100644 --- a/setup.py +++ b/setup.py @@ -25,21 +25,21 @@ def read(fname): setup( name="Xnt", - version="0.4.1", + version="0.5.0dev1", author="Kenny Ballou", author_email="kennethmgballou@gmail.com", url="https://bitbucket.org/devnulltao/xnt", description=("High-Level build script for doing more complex build tasks"), packages=find_packages(), test_suite="xnt.tests", - scripts=["xnt/xenant.py",], + scripts=["xnt/runner.py",], package_data={ }, long_description=read("README"), platforms=["Linux", "Windows",], entry_points={ 'console_scripts': [ - 'xnt = xnt.xenant:main', + 'xnt = xnt.runner:main', ], }, install_requires=['distribute',], -- cgit v1.2.1 From 037397787ceb3b2def0e9e06787b11fafac7fdf0 Mon Sep 17 00:00:00 2001 From: kennyballou Date: Thu, 14 Feb 2013 13:44:39 -0700 Subject: Rename runner back to xenant --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index c283570..2554ad3 100644 --- a/setup.py +++ b/setup.py @@ -32,14 +32,14 @@ setup( description=("High-Level build script for doing more complex build tasks"), packages=find_packages(), test_suite="xnt.tests", - scripts=["xnt/runner.py",], + scripts=["xnt/xenant.py",], package_data={ }, long_description=read("README"), platforms=["Linux", "Windows",], entry_points={ 'console_scripts': [ - 'xnt = xnt.runner:main', + 'xnt = xnt.xenant:main', ], }, install_requires=['distribute',], -- cgit v1.2.1