Metadata-Version: 2.1
Name: specterext-stacktrack
Version: 0.3.0
Summary: Specter Desktop extension to add time series charts for visualizing wallet balances
Author: Wombat6
License: MIT License
        
        Copyright (c) 2020 cryptoadvance.
        Copyright (c) 2022 original authors.
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/cryptoadvance/specterext-stacktrack
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Provides-Extra: test
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
$ pip3 install cryptoadvance.specter
$ 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
```
