Metadata-Version: 2.1
Name: dsa_helpers
Version: 0.4.dev3
Summary: Utility functions for working with the DSA girder client.
Author-email: "Juan C. Vizcarra" <jvizcar@emory.edu>
Maintainer-email: "Juan C. Vizcarra" <jvizcar@emory.edu>
Project-URL: Repository, https://github.com/Gutman-Lab/dsa-python-utils
Keywords: dsa,girder,girder_client
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: girder-client
Requires-Dist: numpy
Requires-Dist: setuptools
Requires-Dist: opencv-python
Requires-Dist: pandas
Requires-Dist: pymongo
Requires-Dist: pillow
Requires-Dist: dash
Requires-Dist: dash_bootstrap_components
Requires-Dist: shapely
Requires-Dist: geopandas

# Digital Slide Archive (DSA) Helpers
Digital Slide Archive Python utility library.

This library is available for installation through [Python Package Index (PyPI)](https://pypi.org/).

This library was tested using Python version 3.11.8 and uses the dependencies described in requirements.txt.

This Python PyPI package is found [here](https://pypi.org/project/dsa-helpers/).

## Instructions for Development
1. Install requirements for building and distributing package:
```
$ python3 -m pip install --upgrade build  # for building package
$ python3 -m pip install --upgrade build  # for uploading to PyPI
```
2. When ready to build:
    - Modify "pyproject.toml" file, change the "version" key to a different value than a version already pushed.
    - Run ```$ python3 -m build```. This will create a dist directory and put your new wheel and tar distribution files there.
3. To install locally for development: ```$ pip3 install dist/dsa_helpers-*.whl```, choosing the wheel version you want to test.
