From 58635cbcd749173c81972c39f148fd89152bcfb6 Mon Sep 17 00:00:00 2001 From: Anton Grudko Date: Thu, 29 Nov 2012 16:01:12 +0400 Subject: [PATCH] Change Readme and setup files --- README | 5 +++-- setup.py | 10 +++++----- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/README b/README index 6d859bf..87acb21 100644 --- a/README +++ b/README @@ -1,2 +1,3 @@ -N3 Deployment Tool - +Usage: create "./deploy/stages" directory in your project, and +fill it with executable files with ".update" and ".rollback" extensions, +that contains the stages of your deployment process. diff --git a/setup.py b/setup.py index c53ebdf..e2cd67e 100644 --- a/setup.py +++ b/setup.py @@ -3,14 +3,14 @@ setup( name='n3d', - version='0.1', - description='N3 Deployment Tool', + version='0.2', + description='Utility for step-by-step application deployment', author='Anton Grudko', author_email='grudko@gmail.com', - url='http://develop.netrika.ru/n3d', + url="http://pypi.python.org/pypi/n3d", platforms=('Any',), py_modules=['n3d'], - install_requires=['pexpect', 'jinja2', 'termcolor'], + install_requires=['pexpect', 'termcolor'], entry_points={ 'console_scripts': [ 'n3d = n3d:main', @@ -23,6 +23,6 @@ 'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)', 'Operating System :: POSIX', 'Programming Language :: Python', - 'Topic :: Software Development :: Build Tools' + 'Topic :: Software Development :: Build Tools', ] )