Metadata-Version: 2.3
Name: dj-tickets
Version: 0.1.0
Summary: 
Author: Aymane Nahji
Author-email: aymanenahjidev@gmail.com
Requires-Python: >=3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: crispy-tailwind (==1.0.3)
Requires-Dist: django (==5.1.1)
Requires-Dist: django-autocomplete-light (==3.11.0)
Requires-Dist: django-cors-headers (==4.4.0)
Requires-Dist: django-filter (==24.3)
Requires-Dist: django-initials-avatar (==0.0.7)
Requires-Dist: django-widget-tweaks (==1.5.0)
Requires-Dist: djangorestframework (==3.15.2)
Description-Content-Type: text/markdown

# Welcome to our library | dj-rest-tickets

### dj-rest-tickets  is a library use DRF to give you EndPoints for :
- send tickets with obervers
- follow proccess of resolve tickets
- give admins control
- make communication good into users


## Get started

`pip install dj-rest-tickets`

add to your settings :

```
INSTALLED_APPS = [
    ...,
    'dj_rest_tickets',
    'dj_rest_tickets.tickets',
    'rest_framework', # just for drf api interface
]
```

than add urls :

```
path('tickets/', include('dj_rest_tickets.urls')),
```

### future features:
- mailing
- roles
