Metadata-Version: 2.5
Name: typemore
Version: 0.1.0
Summary: A collection of custom Python data types for specialized behavior.
Author: maoshen
Maintainer: maoshen
License-Expression: MIT
License-File: LICENSE
Keywords: Auto,ChainNode,Debug,DisplayProxy,InfiniteIterator,Interval,LenLimit,LenLimitError,MemLimit,MemLimitError,Point2D,Point3D,PointAnyD,Range,ReadOnlyBox,StrictFloat,TimeLimit,TimeLimitError,more,type,typemore
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: pympler>=1.0
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

## License

MIT

# typemore

A collection of custom Python data types for specialized behavior.

## Install

pip install typemore

## Usage

from typemore import StrictFloat

StrictFloat(0.1) + StrictFloat(0.2)  # StrictFloat:0.3