Metadata-Version: 2.4
Name: compass_lib
Version: 0.0.1
Summary: A library to read Compass Survey files
Keywords: cave,survey,karst
Author-email: Jonathan Dekhtiar <jonathan@dekhtiar.com>
Maintainer-email: Jonathan Dekhtiar <jonathan@dekhtiar.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
License-File: LICENSE
Requires-Dist: orjson>=3.10,<3.11
Requires-Dist: pydantic>=2.10,<2.12
Requires-Dist: check-manifest ; extra == "dev"
Requires-Dist: pre-commit>=4.1,<4.3 ; extra == "dev"
Requires-Dist: ruff>=0.3,<0.12 ; extra == "dev"
Requires-Dist: python-dotenv>=1.0.0,<2.0.0 ; extra == "dev"
Requires-Dist: cryptography>=44.0.0,<45.0.0 ; extra == "dev"
Requires-Dist: cryptography>=44.0.0,<45.0.0 ; extra == "test"
Requires-Dist: python-dotenv>=1.0.0,<2.0.0 ; extra == "test"
Requires-Dist: deepdiff>=7.0,<9.0 ; extra == "test"
Requires-Dist: pytest>=8.0.0,<9.0.0 ; extra == "test"
Requires-Dist: pytest-cov>=5.0.0,<7.0.0 ; extra == "test"
Requires-Dist: pytest-dotenv>=0.5.0,<1.0.0 ; extra == "test"
Requires-Dist: pytest-env>=1.1.3,<2.0.0 ; extra == "test"
Requires-Dist: pytest-runner>=6.0.0,<7.0.0 ; extra == "test"
Requires-Dist: pytest-ordering>=0.6,<1.0.0 ; extra == "test"
Requires-Dist: parameterized>=0.9.0,<0.10 ; extra == "test"
Project-URL: Bug Reports, https://github.com/OpenSpeleo/pytool_compass_lib/issues
Project-URL: Homepage, https://pypi.org/project/compass-lib/
Project-URL: Source, https://github.com/OpenSpeleo/pytool_compass_lib
Provides-Extra: dev
Provides-Extra: test

# Compass Python Lib

Short instructions

```bash
python demo.py
```

--------------------

## Conversion commands:

```bash
# Install in dev mod
pip install -e ".[dev,test]"

# Install latest stable version
pip install compass_lib

# run some commands
compass convert --input_file=./tests/artifacts/fulford.dat  --output_file=fulford.json --format=json --overwrite
compass convert --input_file=./tests/artifacts/random.dat  --output_file=random.json --format=json --overwrite
```

