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
Provides-Extra: dev
License-File: LICENSE

# 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
```


