Metadata-Version: 2.1
Name: sha-accounts
Version: 0.2.0
Summary: Customized Django Rest Framework Accounting App
Home-page: https://github.com/almohress/drfwrapper
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: djrest-wrapper (>=0.1.8)
Requires-Dist: drf-writable-nested (>=0.6.3)
Requires-Dist: PyJWT (>=2.1.0)

# sha-accounts
Customized Django Rest Framework Accounting App
### Installation
```bash
pip install sha-accounts
```
### Quick Start
set these variables on `settings.py`
```python
from datetime import timedelta

SHA_ACCOUNTS = {
'DEFAULT_ACTIVATION': True,
'AUTH_USER_PROFILE_MODEL': 'examples.ExampleProfile',
'JWT_ACCESS_TOKEN_EXP': timedelta(days=1),
'JWT_USER_ENCODED_FIELDS': ['id'],
'JWT_AUTH_RAELM':'sample_raelm'
}
```


