From 0135c60708316b714cf7ff2ac3ef4b0aee0a55f2 Mon Sep 17 00:00:00 2001 From: paulgb Date: Fri, 23 Aug 2013 00:37:59 -0400 Subject: [PATCH] added manifest --- LICENSE | 17 +++++++++++++++++ MANIFEST.in | 2 ++ sample/__init__.py | 2 +- setup.py | 4 +++- 4 files changed, 23 insertions(+), 2 deletions(-) create mode 100644 LICENSE create mode 100644 MANIFEST.in diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..3bab768 --- /dev/null +++ b/LICENSE @@ -0,0 +1,17 @@ +This software is provided 'as-is', without any express or implied +warranty. In no event will the authors be held liable for any damages +arising from the use of this software. + +Permission is granted to anyone to use this software for any purpose, +including commercial applications, and to alter it and redistribute it +freely, subject to the following restrictions: + +1. The origin of this software must not be misrepresented; you must not + claim that you wrote the original software. If you use this software + in a product, an acknowledgment in the product documentation would be + appreciated but is not required. +2. Altered source versions must be plainly marked as such, and must not be + misrepresented as being the original software. +3. This notice may not be removed or altered from any source distribution. + +Paul Butler diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..04f196a --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,2 @@ +include README.md +include LICENSE diff --git a/sample/__init__.py b/sample/__init__.py index 8e60fdf..ffdfd65 100644 --- a/sample/__init__.py +++ b/sample/__init__.py @@ -1,5 +1,5 @@ -__version__ = '0.0.0' +__version__ = '0.0.1' __author__ = 'Paul Butler ' diff --git a/setup.py b/setup.py index 6c31524..d8f8bc1 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup +import sample + setup(name = 'sample-cli', - version = '0.0.1', + version = sample.__version__, description = 'Command-line interface for sampling lines from text files', author = 'Paul Butler', author_email = 'paulgb@gmail.com',