Metadata-Version: 2.1
Name: notificationapi-python-server-sdk
Version: 0.1.7
Summary:  NotificationAPI SDK for server-side (back-end) python projects. 
Home-page: https://github.com/notificationapi-com/notificationapi_python_server_sdk
Author: Sahand Seifi
Author-email: sahand.seifi@gmail.com
License: MIT license
Keywords: notificationapi_python_server_sdk
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=3.6
License-File: LICENSE

# NotificationAPI Python Server SDK

NotificationAPI SDK for server-side (back-end) python projects. 

* Free software: MIT license

# Contribution

## Ubuntu:
1. Install pip:
```bash
sudo apt update
sudo apt install python3-pip 
```

2. Add dependencies to PATH:
```
# Add this to ~/.profile
export PATH=$PATH:/home/sahand/.local/bin/
```

3. Install dev requirements:
```bash
pip install -r requirements_dev.txt
```

4. Run tests:
```bash
# normal:
make test
# coverage
make coverage
# watch
make test-watch
```
5. bump2version major/minor/patch

