Metadata-Version: 2.1
Name: stignore-agent
Version: 0.0.15
Summary: An agent that allows interactions with the .stignore file on a machine
Home-page: https://github.com/dalmura/stignore-agent-python
Author: Dalmura
License: AGPLv3
Keywords: syncthing stignore
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.9
Description-Content-Type: text/markdown; charset=UTF-8
License-File: LICENSE
Requires-Dist: PyYAML (~=6.0)
Requires-Dist: Flask (~=2.0.2)
Provides-Extra: dev
Requires-Dist: pylint (~=2.12.2) ; extra == 'dev'
Requires-Dist: black (~=21.12b0) ; extra == 'dev'
Requires-Dist: pytest (~=6.2.5) ; extra == 'dev'

# stignore-agent
HTTP API Agent for managing Syncthing's .stignore files on this machine

# Development
## Local Setup
```
python3 -m venv venv
source venv/bin/activate

pip3 install --upgrade pip wheel

# Normal install
pip3 install -e '.'

# Including dev dependencies
pip3 install -e '.[dev]'
```

## Linting/Formatting
```
pylint stignore_agent
black -t py39 stignore_agent
```


