Metadata-Version: 2.1
Name: specterext-stacktrack
Version: 0.1.0
Summary: Specter Desktop extension to add time series charts for visualizing wallet balances
Home-page: https://github.com/cryptoadvance/specterext-stacktrack
Author: wombat6
Author-email: noreply@noreply.com
Project-URL: Bug Tracker, https://github.com/cryptoadvance/specterext-stacktrack/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: <4.0,>=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

![chart_ss](https://user-images.githubusercontent.com/112285082/193432527-3511bdd2-def7-47b4-94ae-0c0f815501a3.png)

# specterext-stacktrack

Specter Desktop plugin to add time series charts for visualizing wallet balances.

To run:

```shell
$ git clone https://github.com/cryptoadvance/specterext-stacktrack.git
$ cd specterext-stacktrack
$ pip3 install virtualenv
$ virtualenv --python=python3 .env
# or do this instead to avoid 3.10, as it isn't yet supported
# $ virtualenv --python=python3.9 .env
$ source .env/bin/activate
$ pip3 install -r requirements.txt
$ pip3 install -e .
$ python3 setup.py install
$ python3 -m cryptoadvance.specter server --config DevelopmentConfig --debug
```

Then point your browser to http://localhost:25441 and choose Services &rarr; StackTrack.

## Development

Running unit tests:

```shell
$ pytest
```
