Metadata-Version: 2.2
Name: django-skillprofil
Version: 0.2
Summary: A Django app to organize skillprofiles.
Author-email: Philipp Kroll <yourname@example.com>
Project-URL: Homepage, https://www.example.com/
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: django>=5.0

==================
django-skillprofil
==================

django-skillprofil is a Django app to organize peoples skillprofile.

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "skillprofil" to your INSTALLED_APPS setting like this::

    INSTALLED_APPS = [
        ...,
        "skillprofil",
    ]

2. Include the skillprofile URLconf in your project urls.py like this::

    path("skillprofil/", include("django_skillprofil.interfaces.urls")),

3. Run ``python manage.py migrate`` to create the models.

4. Start the development server and visit the admin to create a poll.

5. Visit the ``/skillprofil/`` URL to participate in the poll.
