├── .github └── FUNDING.yml ├── CITATION.cff ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── gis_export_bellinge_simple_light.png ├── pyproject.toml ├── requirements.txt ├── setup.cfg └── setup.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | buy_me_a_coffee: MarkusP 2 | -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/README.md -------------------------------------------------------------------------------- /gis_export_bellinge_simple_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/gis_export_bellinge_simple_light.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkusPic/swmm_api/HEAD/setup.py --------------------------------------------------------------------------------