From f7b551dc966ee149935e91341664577c412994cb Mon Sep 17 00:00:00 2001 From: Alex Hall Date: Wed, 25 Dec 2019 18:38:42 +0200 Subject: [PATCH] Include license file in distribution. Bump to 0.0.6 --- LICENSE.txt | 21 +++++++++++++++++++++ MANIFEST.in | 1 + setup.py | 1 + stack_data/__init__.py | 2 +- 4 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 LICENSE.txt create mode 100644 MANIFEST.in diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..473e36e --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2019 Alex Hall + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..42eb410 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +include LICENSE.txt diff --git a/setup.py b/setup.py index fc08529..7183569 100644 --- a/setup.py +++ b/setup.py @@ -42,6 +42,7 @@ def file_to_string(*path): author='Alex Hall', author_email='alex.mojaki@gmail.com', license='MIT', + include_package_data=True, packages=[package], install_requires=install_requires, tests_require=tests_require, diff --git a/stack_data/__init__.py b/stack_data/__init__.py index 5935dd7..aa5be66 100644 --- a/stack_data/__init__.py +++ b/stack_data/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.0.5' +__version__ = '0.0.6' from .core import Source, FrameInfo, markers_from_ranges, Options, LINE_GAP, Line, Variable, RangeInLine, RepeatedFrames, MarkerInLine, style_with_executing_node