Metadata-Version: 2.1
Name: ssds
Version: 0.1.0
Summary: Some specialized data structures for Python.
Home-page: https://github.com/claytsay/ssds-python
Author: Clay Tsay
Author-email: 
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# ssds-python

Some Specialized Data Structures for Python.

`ssds-python` is a library of specialized data structures that are used for
niche purposes, usually in certain algorithms. As such, they are implemented with
efficiency in mind.


## Installation

After cloning, this package can be built and installed from source using the
following command:

```bash
python3 setup.py install
```

## Testing

Tests are located in the `./tests` folder. They can be run manually using the
following command format:

```bash
python3 -m unittest tests/TestSomething.py
```

For some of the structures, the tests will include reports on the
time taken to perform certain operations. These might be useful in
evaluating the efficiency of the implementations.

## Licensing

This software is licensed under the Apache Licence 2.0. See `LICENSE`
for more information.



