Metadata-Version: 2.1
Name: krange
Version: 1.1
Summary: A range / interval package.
Home-page: https://github.com/pamendez/Range-Kata
Author: Pedro Arturo Mendez Cruz, Jean Michael Cuadrado, Belkis Yazmin Vásquez Peña
Author-email: 1088438@est.intec.edu.do, 1076992@est.intec.edu.do, 1085273@est.intec.edu.do
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10.1
Description-Content-Type: text/markdown
License-File: LICENSE

# Krange Package
This package contains a component that follows [this](https://codingdojo.org/kata/Range/) kata, which contains the following operations:

* intergerContainsRange: Checks whether a range contains certain elements of a set.
* containsRange: Checks whether a range is contained in another range.
* getAllPoints: Gets all the points in a specified range.
* endPoints: Gets the endpoints, or limits, in a range.
* overlapsRange: Checks whether a part of the range is inside another range.
* Equals: Checks whether two ranges are the same.

The purpose of this package is to fix some of the issues that the range class has in Python. Please refer to the LICENSE file in order to check the permissions of this package.

# Changelog
## Version 1.0
Launched the package.

## Version 1.1
Fixed bugs with negative numbers and input strings.

