Metadata-Version: 2.1
Name: beancount-swe
Version: 0.1.0
Summary: Beancount Importer fro csv exports from Swedish banks. Supports Länsförsäkringar
Home-page: https://github.com/owodunni/beancount-swe
License: MIT
Keywords: banking,beancount,cli-accounting,finance,Länsförsäkringar
Author: Alexander Poole
Author-email: alex.o.poole@gmail.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Plugins
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Office/Business :: Financial
Classifier: Topic :: Office/Business :: Financial :: Accounting
Requires-Dist: beancount (>=2.3.5,<3.0.0)
Project-URL: Repository, https://github.com/owodunni/beancount-swe
Description-Content-Type: text/markdown

# README

We help Sweden cook their books using Beancount since 2022!

## Gettings stated
In the example folder there is a example beancount project which uses [`beancount-swe`](https://github.com/owodunni/beancount-swe) with [`fava`](https://beancount.github.io/fava/) and [`beancount`](https://beancount.github.io/) to manage personal finance from swedish banks.

```
cp examples ~/my-beancount
```

```
cd ~/my-beancount
```

Open `~/my-beancount/README.md` for further instructions on how to use the example project.

## Development

Install:
```
pip install poetry
```

```
poetry install
```

Build:
```
poetry build
```

Test:
```
poetry run pytest
```

Lint:
```
poetry run flake8
```

Fix:
```
poetry run black . && poetry run isort beancount-swe/ tests/
```


