diff --git a/.gitignore b/.gitignore index a3ebb18..347bc52 100644 --- a/.gitignore +++ b/.gitignore @@ -286,7 +286,3 @@ tags # TODO: where does this rule come from? docs/_book - -# TODO: where does this rule come from? -test/ -/pyproject.toml diff --git a/Makefile b/Makefile index 8e90463..ef6ec64 100644 --- a/Makefile +++ b/Makefile @@ -10,21 +10,9 @@ clean: rm -rf *.egg-info dist build .eggs .pytest_cache sdist: - for pyproject in pyprojects/*.toml; \ - do \ - rm -f pyproject.toml; \ - ln -s $(SRCDIR)/$$pyproject $(SRCDIR)/pyproject.toml; \ - flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=sdist; \ - rm pyproject.toml; \ - done + flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=sdist wheel: - for pyproject in pyprojects/*.toml; \ - do \ - rm -f pyproject.toml; \ - ln -s $(SRCDIR)/$$pyproject $(SRCDIR)/pyproject.toml; \ - flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=wheel; \ - rm pyproject.toml; \ - done + flit -f $(SRCDIR)/pyproject.toml build --no-setup-py --format=wheel .PHONY: clean test sdist wheel diff --git a/nervtn/babel.cfg b/babel.cfg similarity index 100% rename from nervtn/babel.cfg rename to babel.cfg diff --git a/nervtn/server/apps/xmppd/__init__.py b/nervtn/server/apps/xmppd/__init__.py deleted file mode 100644 index e7a79d6..0000000 --- a/nervtn/server/apps/xmppd/__init__.py +++ /dev/null @@ -1,6 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: utf-8 -*- - -from importlib.metadata import version - -__version__ = version(__package__) diff --git a/nervtn/server/main/README.rst b/nervtn/server/main/README.rst deleted file mode 100644 index e69de29..0000000 diff --git a/nervtn/server/security/README.rst b/nervtn/server/security/README.rst deleted file mode 100644 index e69de29..0000000 diff --git a/nervtn/server/apps/accounting/migrations/__init__.py b/nervtn_server/__init__.py similarity index 100% rename from nervtn/server/apps/accounting/migrations/__init__.py rename to nervtn_server/__init__.py diff --git a/nervtn/server/apps/accounting/README.rst b/nervtn_server/apps/accounting/README.rst similarity index 100% rename from nervtn/server/apps/accounting/README.rst rename to nervtn_server/apps/accounting/README.rst diff --git a/nervtn/__init__.py b/nervtn_server/apps/accounting/__init__.py similarity index 100% rename from nervtn/__init__.py rename to nervtn_server/apps/accounting/__init__.py diff --git a/nervtn/server/apps/accounting/admin.py b/nervtn_server/apps/accounting/admin.py similarity index 100% rename from nervtn/server/apps/accounting/admin.py rename to nervtn_server/apps/accounting/admin.py diff --git a/nervtn/server/apps/accounting/apps.py b/nervtn_server/apps/accounting/apps.py similarity index 100% rename from nervtn/server/apps/accounting/apps.py rename to nervtn_server/apps/accounting/apps.py diff --git a/nervtn/server/apps/accreditation/migrations/__init__.py b/nervtn_server/apps/accounting/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/accreditation/migrations/__init__.py rename to nervtn_server/apps/accounting/migrations/__init__.py diff --git a/nervtn/server/apps/accounting/models/__init__.py b/nervtn_server/apps/accounting/models/__init__.py similarity index 100% rename from nervtn/server/apps/accounting/models/__init__.py rename to nervtn_server/apps/accounting/models/__init__.py diff --git a/nervtn/server/apps/accounting/tests.py b/nervtn_server/apps/accounting/tests.py similarity index 100% rename from nervtn/server/apps/accounting/tests.py rename to nervtn_server/apps/accounting/tests.py diff --git a/nervtn/server/apps/accounting/views.py b/nervtn_server/apps/accounting/views.py similarity index 100% rename from nervtn/server/apps/accounting/views.py rename to nervtn_server/apps/accounting/views.py diff --git a/nervtn/server/apps/accreditation/README.rst b/nervtn_server/apps/accreditation/README.rst similarity index 100% rename from nervtn/server/apps/accreditation/README.rst rename to nervtn_server/apps/accreditation/README.rst diff --git a/nervtn/server/apps/accounting/__init__.py b/nervtn_server/apps/accreditation/__init__.py similarity index 100% rename from nervtn/server/apps/accounting/__init__.py rename to nervtn_server/apps/accreditation/__init__.py diff --git a/nervtn/server/apps/accreditation/admin.py b/nervtn_server/apps/accreditation/admin.py similarity index 100% rename from nervtn/server/apps/accreditation/admin.py rename to nervtn_server/apps/accreditation/admin.py diff --git a/nervtn/server/apps/accreditation/apps.py b/nervtn_server/apps/accreditation/apps.py similarity index 100% rename from nervtn/server/apps/accreditation/apps.py rename to nervtn_server/apps/accreditation/apps.py diff --git a/nervtn/server/apps/audit/migrations/__init__.py b/nervtn_server/apps/accreditation/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/audit/migrations/__init__.py rename to nervtn_server/apps/accreditation/migrations/__init__.py diff --git a/nervtn/server/apps/accreditation/models/__init__.py b/nervtn_server/apps/accreditation/models/__init__.py similarity index 100% rename from nervtn/server/apps/accreditation/models/__init__.py rename to nervtn_server/apps/accreditation/models/__init__.py diff --git a/nervtn/server/apps/accreditation/tests.py b/nervtn_server/apps/accreditation/tests.py similarity index 100% rename from nervtn/server/apps/accreditation/tests.py rename to nervtn_server/apps/accreditation/tests.py diff --git a/nervtn/server/apps/accreditation/views.py b/nervtn_server/apps/accreditation/views.py similarity index 100% rename from nervtn/server/apps/accreditation/views.py rename to nervtn_server/apps/accreditation/views.py diff --git a/nervtn/server/apps/audit/README.rst b/nervtn_server/apps/audit/README.rst similarity index 100% rename from nervtn/server/apps/audit/README.rst rename to nervtn_server/apps/audit/README.rst diff --git a/nervtn/server/apps/accreditation/__init__.py b/nervtn_server/apps/audit/__init__.py similarity index 100% rename from nervtn/server/apps/accreditation/__init__.py rename to nervtn_server/apps/audit/__init__.py diff --git a/nervtn/server/apps/audit/admin.py b/nervtn_server/apps/audit/admin.py similarity index 100% rename from nervtn/server/apps/audit/admin.py rename to nervtn_server/apps/audit/admin.py diff --git a/nervtn/server/apps/audit/apps.py b/nervtn_server/apps/audit/apps.py similarity index 100% rename from nervtn/server/apps/audit/apps.py rename to nervtn_server/apps/audit/apps.py diff --git a/nervtn/server/apps/auth/migrations/__init__.py b/nervtn_server/apps/audit/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/auth/migrations/__init__.py rename to nervtn_server/apps/audit/migrations/__init__.py diff --git a/nervtn/server/apps/audit/models/__init__.py b/nervtn_server/apps/audit/models/__init__.py similarity index 100% rename from nervtn/server/apps/audit/models/__init__.py rename to nervtn_server/apps/audit/models/__init__.py diff --git a/nervtn/server/apps/audit/tests.py b/nervtn_server/apps/audit/tests.py similarity index 100% rename from nervtn/server/apps/audit/tests.py rename to nervtn_server/apps/audit/tests.py diff --git a/nervtn/server/apps/audit/views.py b/nervtn_server/apps/audit/views.py similarity index 100% rename from nervtn/server/apps/audit/views.py rename to nervtn_server/apps/audit/views.py diff --git a/nervtn/server/apps/auth/README.rst b/nervtn_server/apps/auth/README.rst similarity index 100% rename from nervtn/server/apps/auth/README.rst rename to nervtn_server/apps/auth/README.rst diff --git a/nervtn/server/apps/audit/__init__.py b/nervtn_server/apps/auth/__init__.py similarity index 100% rename from nervtn/server/apps/audit/__init__.py rename to nervtn_server/apps/auth/__init__.py diff --git a/nervtn/server/apps/auth/admin.py b/nervtn_server/apps/auth/admin.py similarity index 100% rename from nervtn/server/apps/auth/admin.py rename to nervtn_server/apps/auth/admin.py diff --git a/nervtn/server/apps/auth/apps.py b/nervtn_server/apps/auth/apps.py similarity index 100% rename from nervtn/server/apps/auth/apps.py rename to nervtn_server/apps/auth/apps.py diff --git a/nervtn/server/apps/automation/migrations/__init__.py b/nervtn_server/apps/auth/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/automation/migrations/__init__.py rename to nervtn_server/apps/auth/migrations/__init__.py diff --git a/nervtn/server/apps/auth/models/__init__.py b/nervtn_server/apps/auth/models/__init__.py similarity index 100% rename from nervtn/server/apps/auth/models/__init__.py rename to nervtn_server/apps/auth/models/__init__.py diff --git a/nervtn/server/apps/auth/tests.py b/nervtn_server/apps/auth/tests.py similarity index 100% rename from nervtn/server/apps/auth/tests.py rename to nervtn_server/apps/auth/tests.py diff --git a/nervtn/server/apps/auth/views.py b/nervtn_server/apps/auth/views.py similarity index 100% rename from nervtn/server/apps/auth/views.py rename to nervtn_server/apps/auth/views.py diff --git a/nervtn/server/apps/automation/README.rst b/nervtn_server/apps/automation/README.rst similarity index 100% rename from nervtn/server/apps/automation/README.rst rename to nervtn_server/apps/automation/README.rst diff --git a/nervtn/server/apps/auth/__init__.py b/nervtn_server/apps/automation/__init__.py similarity index 100% rename from nervtn/server/apps/auth/__init__.py rename to nervtn_server/apps/automation/__init__.py diff --git a/nervtn/server/apps/automation/admin.py b/nervtn_server/apps/automation/admin.py similarity index 100% rename from nervtn/server/apps/automation/admin.py rename to nervtn_server/apps/automation/admin.py diff --git a/nervtn/server/apps/automation/apps.py b/nervtn_server/apps/automation/apps.py similarity index 100% rename from nervtn/server/apps/automation/apps.py rename to nervtn_server/apps/automation/apps.py diff --git a/nervtn/server/apps/base/migrations/__init__.py b/nervtn_server/apps/automation/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/base/migrations/__init__.py rename to nervtn_server/apps/automation/migrations/__init__.py diff --git a/nervtn/server/apps/automation/models/__init__.py b/nervtn_server/apps/automation/models/__init__.py similarity index 100% rename from nervtn/server/apps/automation/models/__init__.py rename to nervtn_server/apps/automation/models/__init__.py diff --git a/nervtn/server/apps/automation/tests.py b/nervtn_server/apps/automation/tests.py similarity index 100% rename from nervtn/server/apps/automation/tests.py rename to nervtn_server/apps/automation/tests.py diff --git a/nervtn/server/apps/automation/views.py b/nervtn_server/apps/automation/views.py similarity index 100% rename from nervtn/server/apps/automation/views.py rename to nervtn_server/apps/automation/views.py diff --git a/nervtn/server/apps/base/README.rst b/nervtn_server/apps/base/README.rst similarity index 100% rename from nervtn/server/apps/base/README.rst rename to nervtn_server/apps/base/README.rst diff --git a/nervtn/server/apps/automation/__init__.py b/nervtn_server/apps/base/__init__.py similarity index 100% rename from nervtn/server/apps/automation/__init__.py rename to nervtn_server/apps/base/__init__.py diff --git a/nervtn/server/apps/base/admin.py b/nervtn_server/apps/base/admin.py similarity index 100% rename from nervtn/server/apps/base/admin.py rename to nervtn_server/apps/base/admin.py diff --git a/nervtn/server/apps/base/apps.py b/nervtn_server/apps/base/apps.py similarity index 100% rename from nervtn/server/apps/base/apps.py rename to nervtn_server/apps/base/apps.py diff --git a/nervtn/server/apps/bbs/migrations/__init__.py b/nervtn_server/apps/base/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/bbs/migrations/__init__.py rename to nervtn_server/apps/base/migrations/__init__.py diff --git a/nervtn/server/apps/base/models/__init__.py b/nervtn_server/apps/base/models/__init__.py similarity index 100% rename from nervtn/server/apps/base/models/__init__.py rename to nervtn_server/apps/base/models/__init__.py diff --git a/nervtn/server/apps/base/tests.py b/nervtn_server/apps/base/tests.py similarity index 100% rename from nervtn/server/apps/base/tests.py rename to nervtn_server/apps/base/tests.py diff --git a/nervtn/server/apps/base/views.py b/nervtn_server/apps/base/views.py similarity index 100% rename from nervtn/server/apps/base/views.py rename to nervtn_server/apps/base/views.py diff --git a/nervtn/server/apps/bbs/README.rst b/nervtn_server/apps/bbs/README.rst similarity index 100% rename from nervtn/server/apps/bbs/README.rst rename to nervtn_server/apps/bbs/README.rst diff --git a/nervtn/server/apps/base/__init__.py b/nervtn_server/apps/bbs/__init__.py similarity index 100% rename from nervtn/server/apps/base/__init__.py rename to nervtn_server/apps/bbs/__init__.py diff --git a/nervtn/server/apps/bbs/admin.py b/nervtn_server/apps/bbs/admin.py similarity index 100% rename from nervtn/server/apps/bbs/admin.py rename to nervtn_server/apps/bbs/admin.py diff --git a/nervtn/server/apps/bbs/apps.py b/nervtn_server/apps/bbs/apps.py similarity index 100% rename from nervtn/server/apps/bbs/apps.py rename to nervtn_server/apps/bbs/apps.py diff --git a/nervtn/server/apps/bibliography/migrations/__init__.py b/nervtn_server/apps/bbs/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/bibliography/migrations/__init__.py rename to nervtn_server/apps/bbs/migrations/__init__.py diff --git a/nervtn/server/apps/bbs/models/__init__.py b/nervtn_server/apps/bbs/models/__init__.py similarity index 100% rename from nervtn/server/apps/bbs/models/__init__.py rename to nervtn_server/apps/bbs/models/__init__.py diff --git a/nervtn/server/apps/bbs/tests.py b/nervtn_server/apps/bbs/tests.py similarity index 100% rename from nervtn/server/apps/bbs/tests.py rename to nervtn_server/apps/bbs/tests.py diff --git a/nervtn/server/apps/bbs/views.py b/nervtn_server/apps/bbs/views.py similarity index 100% rename from nervtn/server/apps/bbs/views.py rename to nervtn_server/apps/bbs/views.py diff --git a/nervtn/server/apps/bibliography/README.rst b/nervtn_server/apps/bibliography/README.rst similarity index 100% rename from nervtn/server/apps/bibliography/README.rst rename to nervtn_server/apps/bibliography/README.rst diff --git a/nervtn/server/apps/bbs/__init__.py b/nervtn_server/apps/bibliography/__init__.py similarity index 100% rename from nervtn/server/apps/bbs/__init__.py rename to nervtn_server/apps/bibliography/__init__.py diff --git a/nervtn/server/apps/bibliography/admin.py b/nervtn_server/apps/bibliography/admin.py similarity index 100% rename from nervtn/server/apps/bibliography/admin.py rename to nervtn_server/apps/bibliography/admin.py diff --git a/nervtn/server/apps/bibliography/apps.py b/nervtn_server/apps/bibliography/apps.py similarity index 100% rename from nervtn/server/apps/bibliography/apps.py rename to nervtn_server/apps/bibliography/apps.py diff --git a/nervtn/server/apps/builder/migrations/__init__.py b/nervtn_server/apps/bibliography/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/builder/migrations/__init__.py rename to nervtn_server/apps/bibliography/migrations/__init__.py diff --git a/nervtn/server/apps/bibliography/models/__init__.py b/nervtn_server/apps/bibliography/models/__init__.py similarity index 100% rename from nervtn/server/apps/bibliography/models/__init__.py rename to nervtn_server/apps/bibliography/models/__init__.py diff --git a/nervtn/server/apps/bibliography/tests.py b/nervtn_server/apps/bibliography/tests.py similarity index 100% rename from nervtn/server/apps/bibliography/tests.py rename to nervtn_server/apps/bibliography/tests.py diff --git a/nervtn/server/apps/bibliography/views.py b/nervtn_server/apps/bibliography/views.py similarity index 100% rename from nervtn/server/apps/bibliography/views.py rename to nervtn_server/apps/bibliography/views.py diff --git a/nervtn/server/apps/builder/README.rst b/nervtn_server/apps/builder/README.rst similarity index 100% rename from nervtn/server/apps/builder/README.rst rename to nervtn_server/apps/builder/README.rst diff --git a/nervtn/server/apps/bibliography/__init__.py b/nervtn_server/apps/builder/__init__.py similarity index 100% rename from nervtn/server/apps/bibliography/__init__.py rename to nervtn_server/apps/builder/__init__.py diff --git a/nervtn/server/apps/builder/admin.py b/nervtn_server/apps/builder/admin.py similarity index 100% rename from nervtn/server/apps/builder/admin.py rename to nervtn_server/apps/builder/admin.py diff --git a/nervtn/server/apps/builder/apps.py b/nervtn_server/apps/builder/apps.py similarity index 100% rename from nervtn/server/apps/builder/apps.py rename to nervtn_server/apps/builder/apps.py diff --git a/nervtn/server/apps/calendar/migrations/__init__.py b/nervtn_server/apps/builder/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/calendar/migrations/__init__.py rename to nervtn_server/apps/builder/migrations/__init__.py diff --git a/nervtn/server/apps/builder/models/__init__.py b/nervtn_server/apps/builder/models/__init__.py similarity index 100% rename from nervtn/server/apps/builder/models/__init__.py rename to nervtn_server/apps/builder/models/__init__.py diff --git a/nervtn/server/apps/builder/tests.py b/nervtn_server/apps/builder/tests.py similarity index 100% rename from nervtn/server/apps/builder/tests.py rename to nervtn_server/apps/builder/tests.py diff --git a/nervtn/server/apps/builder/views.py b/nervtn_server/apps/builder/views.py similarity index 100% rename from nervtn/server/apps/builder/views.py rename to nervtn_server/apps/builder/views.py diff --git a/nervtn/server/apps/calendar/README.rst b/nervtn_server/apps/calendar/README.rst similarity index 100% rename from nervtn/server/apps/calendar/README.rst rename to nervtn_server/apps/calendar/README.rst diff --git a/nervtn/server/apps/builder/__init__.py b/nervtn_server/apps/calendar/__init__.py similarity index 100% rename from nervtn/server/apps/builder/__init__.py rename to nervtn_server/apps/calendar/__init__.py diff --git a/nervtn/server/apps/calendar/admin.py b/nervtn_server/apps/calendar/admin.py similarity index 100% rename from nervtn/server/apps/calendar/admin.py rename to nervtn_server/apps/calendar/admin.py diff --git a/nervtn/server/apps/calendar/apps.py b/nervtn_server/apps/calendar/apps.py similarity index 100% rename from nervtn/server/apps/calendar/apps.py rename to nervtn_server/apps/calendar/apps.py diff --git a/nervtn/server/apps/catering/migrations/__init__.py b/nervtn_server/apps/calendar/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/catering/migrations/__init__.py rename to nervtn_server/apps/calendar/migrations/__init__.py diff --git a/nervtn/server/apps/calendar/models/__init__.py b/nervtn_server/apps/calendar/models/__init__.py similarity index 100% rename from nervtn/server/apps/calendar/models/__init__.py rename to nervtn_server/apps/calendar/models/__init__.py diff --git a/nervtn/server/apps/calendar/tests.py b/nervtn_server/apps/calendar/tests.py similarity index 100% rename from nervtn/server/apps/calendar/tests.py rename to nervtn_server/apps/calendar/tests.py diff --git a/nervtn/server/apps/calendar/views.py b/nervtn_server/apps/calendar/views.py similarity index 100% rename from nervtn/server/apps/calendar/views.py rename to nervtn_server/apps/calendar/views.py diff --git a/nervtn/server/apps/catering/README.rst b/nervtn_server/apps/catering/README.rst similarity index 100% rename from nervtn/server/apps/catering/README.rst rename to nervtn_server/apps/catering/README.rst diff --git a/nervtn/server/apps/calendar/__init__.py b/nervtn_server/apps/catering/__init__.py similarity index 100% rename from nervtn/server/apps/calendar/__init__.py rename to nervtn_server/apps/catering/__init__.py diff --git a/nervtn/server/apps/catering/admin.py b/nervtn_server/apps/catering/admin.py similarity index 100% rename from nervtn/server/apps/catering/admin.py rename to nervtn_server/apps/catering/admin.py diff --git a/nervtn/server/apps/catering/apps.py b/nervtn_server/apps/catering/apps.py similarity index 100% rename from nervtn/server/apps/catering/apps.py rename to nervtn_server/apps/catering/apps.py diff --git a/nervtn/server/apps/chat/migrations/__init__.py b/nervtn_server/apps/catering/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/chat/migrations/__init__.py rename to nervtn_server/apps/catering/migrations/__init__.py diff --git a/nervtn/server/apps/catering/models/__init__.py b/nervtn_server/apps/catering/models/__init__.py similarity index 100% rename from nervtn/server/apps/catering/models/__init__.py rename to nervtn_server/apps/catering/models/__init__.py diff --git a/nervtn/server/apps/catering/tests.py b/nervtn_server/apps/catering/tests.py similarity index 100% rename from nervtn/server/apps/catering/tests.py rename to nervtn_server/apps/catering/tests.py diff --git a/nervtn/server/apps/catering/views.py b/nervtn_server/apps/catering/views.py similarity index 100% rename from nervtn/server/apps/catering/views.py rename to nervtn_server/apps/catering/views.py diff --git a/nervtn/server/apps/chat/README.rst b/nervtn_server/apps/chat/README.rst similarity index 100% rename from nervtn/server/apps/chat/README.rst rename to nervtn_server/apps/chat/README.rst diff --git a/nervtn/server/apps/catering/__init__.py b/nervtn_server/apps/chat/__init__.py similarity index 100% rename from nervtn/server/apps/catering/__init__.py rename to nervtn_server/apps/chat/__init__.py diff --git a/nervtn/server/apps/chat/admin.py b/nervtn_server/apps/chat/admin.py similarity index 100% rename from nervtn/server/apps/chat/admin.py rename to nervtn_server/apps/chat/admin.py diff --git a/nervtn/server/apps/chat/apps.py b/nervtn_server/apps/chat/apps.py similarity index 100% rename from nervtn/server/apps/chat/apps.py rename to nervtn_server/apps/chat/apps.py diff --git a/nervtn/server/apps/contact/migrations/__init__.py b/nervtn_server/apps/chat/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/contact/migrations/__init__.py rename to nervtn_server/apps/chat/migrations/__init__.py diff --git a/nervtn/server/apps/chat/models/__init__.py b/nervtn_server/apps/chat/models/__init__.py similarity index 100% rename from nervtn/server/apps/chat/models/__init__.py rename to nervtn_server/apps/chat/models/__init__.py diff --git a/nervtn/server/apps/chat/tests.py b/nervtn_server/apps/chat/tests.py similarity index 100% rename from nervtn/server/apps/chat/tests.py rename to nervtn_server/apps/chat/tests.py diff --git a/nervtn/server/apps/chat/views.py b/nervtn_server/apps/chat/views.py similarity index 100% rename from nervtn/server/apps/chat/views.py rename to nervtn_server/apps/chat/views.py diff --git a/nervtn/server/apps/contact/README.rst b/nervtn_server/apps/contact/README.rst similarity index 100% rename from nervtn/server/apps/contact/README.rst rename to nervtn_server/apps/contact/README.rst diff --git a/nervtn/server/apps/chat/__init__.py b/nervtn_server/apps/contact/__init__.py similarity index 100% rename from nervtn/server/apps/chat/__init__.py rename to nervtn_server/apps/contact/__init__.py diff --git a/nervtn/server/apps/contact/admin.py b/nervtn_server/apps/contact/admin.py similarity index 100% rename from nervtn/server/apps/contact/admin.py rename to nervtn_server/apps/contact/admin.py diff --git a/nervtn/server/apps/contact/apps.py b/nervtn_server/apps/contact/apps.py similarity index 100% rename from nervtn/server/apps/contact/apps.py rename to nervtn_server/apps/contact/apps.py diff --git a/nervtn/server/apps/contract/migrations/__init__.py b/nervtn_server/apps/contact/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/contract/migrations/__init__.py rename to nervtn_server/apps/contact/migrations/__init__.py diff --git a/nervtn/server/apps/contact/models/__init__.py b/nervtn_server/apps/contact/models/__init__.py similarity index 100% rename from nervtn/server/apps/contact/models/__init__.py rename to nervtn_server/apps/contact/models/__init__.py diff --git a/nervtn/server/apps/contact/tests.py b/nervtn_server/apps/contact/tests.py similarity index 100% rename from nervtn/server/apps/contact/tests.py rename to nervtn_server/apps/contact/tests.py diff --git a/nervtn/server/apps/contact/views.py b/nervtn_server/apps/contact/views.py similarity index 100% rename from nervtn/server/apps/contact/views.py rename to nervtn_server/apps/contact/views.py diff --git a/nervtn/server/apps/contract/README.rst b/nervtn_server/apps/contract/README.rst similarity index 100% rename from nervtn/server/apps/contract/README.rst rename to nervtn_server/apps/contract/README.rst diff --git a/nervtn/server/apps/contact/__init__.py b/nervtn_server/apps/contract/__init__.py similarity index 100% rename from nervtn/server/apps/contact/__init__.py rename to nervtn_server/apps/contract/__init__.py diff --git a/nervtn/server/apps/contract/admin.py b/nervtn_server/apps/contract/admin.py similarity index 100% rename from nervtn/server/apps/contract/admin.py rename to nervtn_server/apps/contract/admin.py diff --git a/nervtn/server/apps/contract/apps.py b/nervtn_server/apps/contract/apps.py similarity index 100% rename from nervtn/server/apps/contract/apps.py rename to nervtn_server/apps/contract/apps.py diff --git a/nervtn/server/apps/crisis/migrations/__init__.py b/nervtn_server/apps/contract/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/crisis/migrations/__init__.py rename to nervtn_server/apps/contract/migrations/__init__.py diff --git a/nervtn/server/apps/contract/models/__init__.py b/nervtn_server/apps/contract/models/__init__.py similarity index 100% rename from nervtn/server/apps/contract/models/__init__.py rename to nervtn_server/apps/contract/models/__init__.py diff --git a/nervtn/server/apps/contract/tests.py b/nervtn_server/apps/contract/tests.py similarity index 100% rename from nervtn/server/apps/contract/tests.py rename to nervtn_server/apps/contract/tests.py diff --git a/nervtn/server/apps/contract/views.py b/nervtn_server/apps/contract/views.py similarity index 100% rename from nervtn/server/apps/contract/views.py rename to nervtn_server/apps/contract/views.py diff --git a/nervtn/server/apps/crisis/README.rst b/nervtn_server/apps/crisis/README.rst similarity index 100% rename from nervtn/server/apps/crisis/README.rst rename to nervtn_server/apps/crisis/README.rst diff --git a/nervtn/server/apps/contract/__init__.py b/nervtn_server/apps/crisis/__init__.py similarity index 100% rename from nervtn/server/apps/contract/__init__.py rename to nervtn_server/apps/crisis/__init__.py diff --git a/nervtn/server/apps/crisis/admin.py b/nervtn_server/apps/crisis/admin.py similarity index 100% rename from nervtn/server/apps/crisis/admin.py rename to nervtn_server/apps/crisis/admin.py diff --git a/nervtn/server/apps/crisis/apps.py b/nervtn_server/apps/crisis/apps.py similarity index 100% rename from nervtn/server/apps/crisis/apps.py rename to nervtn_server/apps/crisis/apps.py diff --git a/nervtn/server/apps/davd/migrations/__init__.py b/nervtn_server/apps/crisis/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/davd/migrations/__init__.py rename to nervtn_server/apps/crisis/migrations/__init__.py diff --git a/nervtn/server/apps/crisis/models/__init__.py b/nervtn_server/apps/crisis/models/__init__.py similarity index 100% rename from nervtn/server/apps/crisis/models/__init__.py rename to nervtn_server/apps/crisis/models/__init__.py diff --git a/nervtn/server/apps/crisis/tests.py b/nervtn_server/apps/crisis/tests.py similarity index 100% rename from nervtn/server/apps/crisis/tests.py rename to nervtn_server/apps/crisis/tests.py diff --git a/nervtn/server/apps/crisis/views.py b/nervtn_server/apps/crisis/views.py similarity index 100% rename from nervtn/server/apps/crisis/views.py rename to nervtn_server/apps/crisis/views.py diff --git a/nervtn/server/apps/davd/README.rst b/nervtn_server/apps/davd/README.rst similarity index 100% rename from nervtn/server/apps/davd/README.rst rename to nervtn_server/apps/davd/README.rst diff --git a/nervtn/server/apps/crisis/__init__.py b/nervtn_server/apps/davd/__init__.py similarity index 100% rename from nervtn/server/apps/crisis/__init__.py rename to nervtn_server/apps/davd/__init__.py diff --git a/nervtn/server/apps/davd/admin.py b/nervtn_server/apps/davd/admin.py similarity index 100% rename from nervtn/server/apps/davd/admin.py rename to nervtn_server/apps/davd/admin.py diff --git a/nervtn/server/apps/davd/apps.py b/nervtn_server/apps/davd/apps.py similarity index 100% rename from nervtn/server/apps/davd/apps.py rename to nervtn_server/apps/davd/apps.py diff --git a/nervtn/server/apps/document/migrations/__init__.py b/nervtn_server/apps/davd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/document/migrations/__init__.py rename to nervtn_server/apps/davd/migrations/__init__.py diff --git a/nervtn/server/apps/davd/models/__init__.py b/nervtn_server/apps/davd/models/__init__.py similarity index 100% rename from nervtn/server/apps/davd/models/__init__.py rename to nervtn_server/apps/davd/models/__init__.py diff --git a/nervtn/server/apps/davd/tests.py b/nervtn_server/apps/davd/tests.py similarity index 100% rename from nervtn/server/apps/davd/tests.py rename to nervtn_server/apps/davd/tests.py diff --git a/nervtn/server/apps/davd/views.py b/nervtn_server/apps/davd/views.py similarity index 100% rename from nervtn/server/apps/davd/views.py rename to nervtn_server/apps/davd/views.py diff --git a/nervtn/server/apps/document/README.rst b/nervtn_server/apps/document/README.rst similarity index 100% rename from nervtn/server/apps/document/README.rst rename to nervtn_server/apps/document/README.rst diff --git a/nervtn/server/apps/davd/__init__.py b/nervtn_server/apps/document/__init__.py similarity index 100% rename from nervtn/server/apps/davd/__init__.py rename to nervtn_server/apps/document/__init__.py diff --git a/nervtn/server/apps/document/admin.py b/nervtn_server/apps/document/admin.py similarity index 100% rename from nervtn/server/apps/document/admin.py rename to nervtn_server/apps/document/admin.py diff --git a/nervtn/server/apps/document/apps.py b/nervtn_server/apps/document/apps.py similarity index 100% rename from nervtn/server/apps/document/apps.py rename to nervtn_server/apps/document/apps.py diff --git a/nervtn/server/apps/dodp/migrations/__init__.py b/nervtn_server/apps/document/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/dodp/migrations/__init__.py rename to nervtn_server/apps/document/migrations/__init__.py diff --git a/nervtn/server/apps/document/models/__init__.py b/nervtn_server/apps/document/models/__init__.py similarity index 100% rename from nervtn/server/apps/document/models/__init__.py rename to nervtn_server/apps/document/models/__init__.py diff --git a/nervtn/server/apps/document/tests.py b/nervtn_server/apps/document/tests.py similarity index 100% rename from nervtn/server/apps/document/tests.py rename to nervtn_server/apps/document/tests.py diff --git a/nervtn/server/apps/document/views.py b/nervtn_server/apps/document/views.py similarity index 100% rename from nervtn/server/apps/document/views.py rename to nervtn_server/apps/document/views.py diff --git a/nervtn/server/apps/dodp/README.rst b/nervtn_server/apps/dodp/README.rst similarity index 100% rename from nervtn/server/apps/dodp/README.rst rename to nervtn_server/apps/dodp/README.rst diff --git a/nervtn/server/apps/document/__init__.py b/nervtn_server/apps/dodp/__init__.py similarity index 100% rename from nervtn/server/apps/document/__init__.py rename to nervtn_server/apps/dodp/__init__.py diff --git a/nervtn/server/apps/dodp/admin.py b/nervtn_server/apps/dodp/admin.py similarity index 100% rename from nervtn/server/apps/dodp/admin.py rename to nervtn_server/apps/dodp/admin.py diff --git a/nervtn/server/apps/dodp/apps.py b/nervtn_server/apps/dodp/apps.py similarity index 100% rename from nervtn/server/apps/dodp/apps.py rename to nervtn_server/apps/dodp/apps.py diff --git a/nervtn/server/apps/drm/migrations/__init__.py b/nervtn_server/apps/dodp/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/drm/migrations/__init__.py rename to nervtn_server/apps/dodp/migrations/__init__.py diff --git a/nervtn/server/apps/dodp/models/__init__.py b/nervtn_server/apps/dodp/models/__init__.py similarity index 100% rename from nervtn/server/apps/dodp/models/__init__.py rename to nervtn_server/apps/dodp/models/__init__.py diff --git a/nervtn/server/apps/dodp/tests.py b/nervtn_server/apps/dodp/tests.py similarity index 100% rename from nervtn/server/apps/dodp/tests.py rename to nervtn_server/apps/dodp/tests.py diff --git a/nervtn/server/apps/dodp/views.py b/nervtn_server/apps/dodp/views.py similarity index 100% rename from nervtn/server/apps/dodp/views.py rename to nervtn_server/apps/dodp/views.py diff --git a/nervtn/server/apps/drm/README.rst b/nervtn_server/apps/drm/README.rst similarity index 100% rename from nervtn/server/apps/drm/README.rst rename to nervtn_server/apps/drm/README.rst diff --git a/nervtn/server/apps/dodp/__init__.py b/nervtn_server/apps/drm/__init__.py similarity index 100% rename from nervtn/server/apps/dodp/__init__.py rename to nervtn_server/apps/drm/__init__.py diff --git a/nervtn/server/apps/drm/admin.py b/nervtn_server/apps/drm/admin.py similarity index 100% rename from nervtn/server/apps/drm/admin.py rename to nervtn_server/apps/drm/admin.py diff --git a/nervtn/server/apps/drm/apps.py b/nervtn_server/apps/drm/apps.py similarity index 100% rename from nervtn/server/apps/drm/apps.py rename to nervtn_server/apps/drm/apps.py diff --git a/nervtn/server/apps/editor/migrations/__init__.py b/nervtn_server/apps/drm/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/editor/migrations/__init__.py rename to nervtn_server/apps/drm/migrations/__init__.py diff --git a/nervtn/server/apps/drm/models/__init__.py b/nervtn_server/apps/drm/models/__init__.py similarity index 100% rename from nervtn/server/apps/drm/models/__init__.py rename to nervtn_server/apps/drm/models/__init__.py diff --git a/nervtn/server/apps/drm/tests.py b/nervtn_server/apps/drm/tests.py similarity index 100% rename from nervtn/server/apps/drm/tests.py rename to nervtn_server/apps/drm/tests.py diff --git a/nervtn/server/apps/drm/views.py b/nervtn_server/apps/drm/views.py similarity index 100% rename from nervtn/server/apps/drm/views.py rename to nervtn_server/apps/drm/views.py diff --git a/nervtn/server/apps/editor/README.rst b/nervtn_server/apps/editor/README.rst similarity index 100% rename from nervtn/server/apps/editor/README.rst rename to nervtn_server/apps/editor/README.rst diff --git a/nervtn/server/apps/drm/__init__.py b/nervtn_server/apps/editor/__init__.py similarity index 100% rename from nervtn/server/apps/drm/__init__.py rename to nervtn_server/apps/editor/__init__.py diff --git a/nervtn/server/apps/editor/admin.py b/nervtn_server/apps/editor/admin.py similarity index 100% rename from nervtn/server/apps/editor/admin.py rename to nervtn_server/apps/editor/admin.py diff --git a/nervtn/server/apps/editor/apps.py b/nervtn_server/apps/editor/apps.py similarity index 100% rename from nervtn/server/apps/editor/apps.py rename to nervtn_server/apps/editor/apps.py diff --git a/nervtn/server/apps/employee/migrations/__init__.py b/nervtn_server/apps/editor/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/employee/migrations/__init__.py rename to nervtn_server/apps/editor/migrations/__init__.py diff --git a/nervtn/server/apps/editor/models/__init__.py b/nervtn_server/apps/editor/models/__init__.py similarity index 100% rename from nervtn/server/apps/editor/models/__init__.py rename to nervtn_server/apps/editor/models/__init__.py diff --git a/nervtn/server/apps/editor/tests.py b/nervtn_server/apps/editor/tests.py similarity index 100% rename from nervtn/server/apps/editor/tests.py rename to nervtn_server/apps/editor/tests.py diff --git a/nervtn/server/apps/editor/views.py b/nervtn_server/apps/editor/views.py similarity index 100% rename from nervtn/server/apps/editor/views.py rename to nervtn_server/apps/editor/views.py diff --git a/nervtn/server/apps/employee/README.rst b/nervtn_server/apps/employee/README.rst similarity index 100% rename from nervtn/server/apps/employee/README.rst rename to nervtn_server/apps/employee/README.rst diff --git a/nervtn/server/apps/editor/__init__.py b/nervtn_server/apps/employee/__init__.py similarity index 100% rename from nervtn/server/apps/editor/__init__.py rename to nervtn_server/apps/employee/__init__.py diff --git a/nervtn/server/apps/employee/admin.py b/nervtn_server/apps/employee/admin.py similarity index 100% rename from nervtn/server/apps/employee/admin.py rename to nervtn_server/apps/employee/admin.py diff --git a/nervtn/server/apps/employee/apps.py b/nervtn_server/apps/employee/apps.py similarity index 100% rename from nervtn/server/apps/employee/apps.py rename to nervtn_server/apps/employee/apps.py diff --git a/nervtn/server/apps/esb/migrations/__init__.py b/nervtn_server/apps/employee/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/esb/migrations/__init__.py rename to nervtn_server/apps/employee/migrations/__init__.py diff --git a/nervtn/server/apps/employee/models/__init__.py b/nervtn_server/apps/employee/models/__init__.py similarity index 100% rename from nervtn/server/apps/employee/models/__init__.py rename to nervtn_server/apps/employee/models/__init__.py diff --git a/nervtn/server/apps/employee/tests.py b/nervtn_server/apps/employee/tests.py similarity index 100% rename from nervtn/server/apps/employee/tests.py rename to nervtn_server/apps/employee/tests.py diff --git a/nervtn/server/apps/employee/views.py b/nervtn_server/apps/employee/views.py similarity index 100% rename from nervtn/server/apps/employee/views.py rename to nervtn_server/apps/employee/views.py diff --git a/nervtn/server/apps/esb/README.rst b/nervtn_server/apps/esb/README.rst similarity index 100% rename from nervtn/server/apps/esb/README.rst rename to nervtn_server/apps/esb/README.rst diff --git a/nervtn/server/apps/employee/__init__.py b/nervtn_server/apps/esb/__init__.py similarity index 100% rename from nervtn/server/apps/employee/__init__.py rename to nervtn_server/apps/esb/__init__.py diff --git a/nervtn/server/apps/esb/admin.py b/nervtn_server/apps/esb/admin.py similarity index 100% rename from nervtn/server/apps/esb/admin.py rename to nervtn_server/apps/esb/admin.py diff --git a/nervtn/server/apps/esb/apps.py b/nervtn_server/apps/esb/apps.py similarity index 100% rename from nervtn/server/apps/esb/apps.py rename to nervtn_server/apps/esb/apps.py diff --git a/nervtn/server/apps/event/migrations/__init__.py b/nervtn_server/apps/esb/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/event/migrations/__init__.py rename to nervtn_server/apps/esb/migrations/__init__.py diff --git a/nervtn/server/apps/esb/models/__init__.py b/nervtn_server/apps/esb/models/__init__.py similarity index 100% rename from nervtn/server/apps/esb/models/__init__.py rename to nervtn_server/apps/esb/models/__init__.py diff --git a/nervtn/server/apps/esb/tests.py b/nervtn_server/apps/esb/tests.py similarity index 100% rename from nervtn/server/apps/esb/tests.py rename to nervtn_server/apps/esb/tests.py diff --git a/nervtn/server/apps/esb/views.py b/nervtn_server/apps/esb/views.py similarity index 100% rename from nervtn/server/apps/esb/views.py rename to nervtn_server/apps/esb/views.py diff --git a/nervtn/server/apps/event/README.rst b/nervtn_server/apps/event/README.rst similarity index 100% rename from nervtn/server/apps/event/README.rst rename to nervtn_server/apps/event/README.rst diff --git a/nervtn/server/apps/esb/__init__.py b/nervtn_server/apps/event/__init__.py similarity index 100% rename from nervtn/server/apps/esb/__init__.py rename to nervtn_server/apps/event/__init__.py diff --git a/nervtn/server/apps/event/admin.py b/nervtn_server/apps/event/admin.py similarity index 100% rename from nervtn/server/apps/event/admin.py rename to nervtn_server/apps/event/admin.py diff --git a/nervtn/server/apps/event/apps.py b/nervtn_server/apps/event/apps.py similarity index 100% rename from nervtn/server/apps/event/apps.py rename to nervtn_server/apps/event/apps.py diff --git a/nervtn/server/apps/expedition/migrations/__init__.py b/nervtn_server/apps/event/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/expedition/migrations/__init__.py rename to nervtn_server/apps/event/migrations/__init__.py diff --git a/nervtn/server/apps/event/models/__init__.py b/nervtn_server/apps/event/models/__init__.py similarity index 100% rename from nervtn/server/apps/event/models/__init__.py rename to nervtn_server/apps/event/models/__init__.py diff --git a/nervtn/server/apps/event/tests.py b/nervtn_server/apps/event/tests.py similarity index 100% rename from nervtn/server/apps/event/tests.py rename to nervtn_server/apps/event/tests.py diff --git a/nervtn/server/apps/event/views.py b/nervtn_server/apps/event/views.py similarity index 100% rename from nervtn/server/apps/event/views.py rename to nervtn_server/apps/event/views.py diff --git a/nervtn/server/apps/expedition/README.rst b/nervtn_server/apps/expedition/README.rst similarity index 100% rename from nervtn/server/apps/expedition/README.rst rename to nervtn_server/apps/expedition/README.rst diff --git a/nervtn/server/apps/event/__init__.py b/nervtn_server/apps/expedition/__init__.py similarity index 100% rename from nervtn/server/apps/event/__init__.py rename to nervtn_server/apps/expedition/__init__.py diff --git a/nervtn/server/apps/expedition/admin.py b/nervtn_server/apps/expedition/admin.py similarity index 100% rename from nervtn/server/apps/expedition/admin.py rename to nervtn_server/apps/expedition/admin.py diff --git a/nervtn/server/apps/expedition/apps.py b/nervtn_server/apps/expedition/apps.py similarity index 100% rename from nervtn/server/apps/expedition/apps.py rename to nervtn_server/apps/expedition/apps.py diff --git a/nervtn/server/apps/files/migrations/__init__.py b/nervtn_server/apps/expedition/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/files/migrations/__init__.py rename to nervtn_server/apps/expedition/migrations/__init__.py diff --git a/nervtn/server/apps/expedition/models/__init__.py b/nervtn_server/apps/expedition/models/__init__.py similarity index 100% rename from nervtn/server/apps/expedition/models/__init__.py rename to nervtn_server/apps/expedition/models/__init__.py diff --git a/nervtn/server/apps/expedition/tests.py b/nervtn_server/apps/expedition/tests.py similarity index 100% rename from nervtn/server/apps/expedition/tests.py rename to nervtn_server/apps/expedition/tests.py diff --git a/nervtn/server/apps/expedition/views.py b/nervtn_server/apps/expedition/views.py similarity index 100% rename from nervtn/server/apps/expedition/views.py rename to nervtn_server/apps/expedition/views.py diff --git a/nervtn/server/apps/files/README.rst b/nervtn_server/apps/files/README.rst similarity index 100% rename from nervtn/server/apps/files/README.rst rename to nervtn_server/apps/files/README.rst diff --git a/nervtn/server/apps/expedition/__init__.py b/nervtn_server/apps/files/__init__.py similarity index 100% rename from nervtn/server/apps/expedition/__init__.py rename to nervtn_server/apps/files/__init__.py diff --git a/nervtn/server/apps/files/admin.py b/nervtn_server/apps/files/admin.py similarity index 100% rename from nervtn/server/apps/files/admin.py rename to nervtn_server/apps/files/admin.py diff --git a/nervtn/server/apps/files/apps.py b/nervtn_server/apps/files/apps.py similarity index 100% rename from nervtn/server/apps/files/apps.py rename to nervtn_server/apps/files/apps.py diff --git a/nervtn/server/apps/ftpd/migrations/__init__.py b/nervtn_server/apps/files/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/ftpd/migrations/__init__.py rename to nervtn_server/apps/files/migrations/__init__.py diff --git a/nervtn/server/apps/files/models/__init__.py b/nervtn_server/apps/files/models/__init__.py similarity index 100% rename from nervtn/server/apps/files/models/__init__.py rename to nervtn_server/apps/files/models/__init__.py diff --git a/nervtn/server/apps/files/tests.py b/nervtn_server/apps/files/tests.py similarity index 100% rename from nervtn/server/apps/files/tests.py rename to nervtn_server/apps/files/tests.py diff --git a/nervtn/server/apps/files/views.py b/nervtn_server/apps/files/views.py similarity index 100% rename from nervtn/server/apps/files/views.py rename to nervtn_server/apps/files/views.py diff --git a/nervtn/server/apps/ftpd/README.rst b/nervtn_server/apps/ftpd/README.rst similarity index 100% rename from nervtn/server/apps/ftpd/README.rst rename to nervtn_server/apps/ftpd/README.rst diff --git a/nervtn/server/apps/files/__init__.py b/nervtn_server/apps/ftpd/__init__.py similarity index 100% rename from nervtn/server/apps/files/__init__.py rename to nervtn_server/apps/ftpd/__init__.py diff --git a/nervtn/server/apps/ftpd/admin.py b/nervtn_server/apps/ftpd/admin.py similarity index 100% rename from nervtn/server/apps/ftpd/admin.py rename to nervtn_server/apps/ftpd/admin.py diff --git a/nervtn/server/apps/ftpd/apps.py b/nervtn_server/apps/ftpd/apps.py similarity index 100% rename from nervtn/server/apps/ftpd/apps.py rename to nervtn_server/apps/ftpd/apps.py diff --git a/nervtn/server/apps/help/migrations/__init__.py b/nervtn_server/apps/ftpd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/help/migrations/__init__.py rename to nervtn_server/apps/ftpd/migrations/__init__.py diff --git a/nervtn/server/apps/ftpd/models/__init__.py b/nervtn_server/apps/ftpd/models/__init__.py similarity index 100% rename from nervtn/server/apps/ftpd/models/__init__.py rename to nervtn_server/apps/ftpd/models/__init__.py diff --git a/nervtn/server/apps/ftpd/tests.py b/nervtn_server/apps/ftpd/tests.py similarity index 100% rename from nervtn/server/apps/ftpd/tests.py rename to nervtn_server/apps/ftpd/tests.py diff --git a/nervtn/server/apps/ftpd/views.py b/nervtn_server/apps/ftpd/views.py similarity index 100% rename from nervtn/server/apps/ftpd/views.py rename to nervtn_server/apps/ftpd/views.py diff --git a/nervtn/server/apps/help/README.rst b/nervtn_server/apps/help/README.rst similarity index 100% rename from nervtn/server/apps/help/README.rst rename to nervtn_server/apps/help/README.rst diff --git a/nervtn/server/apps/ftpd/__init__.py b/nervtn_server/apps/help/__init__.py similarity index 100% rename from nervtn/server/apps/ftpd/__init__.py rename to nervtn_server/apps/help/__init__.py diff --git a/nervtn/server/apps/help/admin.py b/nervtn_server/apps/help/admin.py similarity index 100% rename from nervtn/server/apps/help/admin.py rename to nervtn_server/apps/help/admin.py diff --git a/nervtn/server/apps/help/apps.py b/nervtn_server/apps/help/apps.py similarity index 100% rename from nervtn/server/apps/help/apps.py rename to nervtn_server/apps/help/apps.py diff --git a/nervtn/server/apps/history/migrations/__init__.py b/nervtn_server/apps/help/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/history/migrations/__init__.py rename to nervtn_server/apps/help/migrations/__init__.py diff --git a/nervtn/server/apps/help/models/__init__.py b/nervtn_server/apps/help/models/__init__.py similarity index 100% rename from nervtn/server/apps/help/models/__init__.py rename to nervtn_server/apps/help/models/__init__.py diff --git a/nervtn/server/apps/help/tests.py b/nervtn_server/apps/help/tests.py similarity index 100% rename from nervtn/server/apps/help/tests.py rename to nervtn_server/apps/help/tests.py diff --git a/nervtn/server/apps/help/views.py b/nervtn_server/apps/help/views.py similarity index 100% rename from nervtn/server/apps/help/views.py rename to nervtn_server/apps/help/views.py diff --git a/nervtn/server/apps/history/README.rst b/nervtn_server/apps/history/README.rst similarity index 100% rename from nervtn/server/apps/history/README.rst rename to nervtn_server/apps/history/README.rst diff --git a/nervtn/server/apps/help/__init__.py b/nervtn_server/apps/history/__init__.py similarity index 100% rename from nervtn/server/apps/help/__init__.py rename to nervtn_server/apps/history/__init__.py diff --git a/nervtn/server/apps/history/admin.py b/nervtn_server/apps/history/admin.py similarity index 100% rename from nervtn/server/apps/history/admin.py rename to nervtn_server/apps/history/admin.py diff --git a/nervtn/server/apps/history/apps.py b/nervtn_server/apps/history/apps.py similarity index 100% rename from nervtn/server/apps/history/apps.py rename to nervtn_server/apps/history/apps.py diff --git a/nervtn/server/apps/imapd/migrations/__init__.py b/nervtn_server/apps/history/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/imapd/migrations/__init__.py rename to nervtn_server/apps/history/migrations/__init__.py diff --git a/nervtn/server/apps/history/models/__init__.py b/nervtn_server/apps/history/models/__init__.py similarity index 100% rename from nervtn/server/apps/history/models/__init__.py rename to nervtn_server/apps/history/models/__init__.py diff --git a/nervtn/server/apps/history/tests.py b/nervtn_server/apps/history/tests.py similarity index 100% rename from nervtn/server/apps/history/tests.py rename to nervtn_server/apps/history/tests.py diff --git a/nervtn/server/apps/history/views.py b/nervtn_server/apps/history/views.py similarity index 100% rename from nervtn/server/apps/history/views.py rename to nervtn_server/apps/history/views.py diff --git a/nervtn/server/apps/imapd/README.rst b/nervtn_server/apps/imapd/README.rst similarity index 100% rename from nervtn/server/apps/imapd/README.rst rename to nervtn_server/apps/imapd/README.rst diff --git a/nervtn/server/apps/history/__init__.py b/nervtn_server/apps/imapd/__init__.py similarity index 100% rename from nervtn/server/apps/history/__init__.py rename to nervtn_server/apps/imapd/__init__.py diff --git a/nervtn/server/apps/imapd/admin.py b/nervtn_server/apps/imapd/admin.py similarity index 100% rename from nervtn/server/apps/imapd/admin.py rename to nervtn_server/apps/imapd/admin.py diff --git a/nervtn/server/apps/imapd/apps.py b/nervtn_server/apps/imapd/apps.py similarity index 100% rename from nervtn/server/apps/imapd/apps.py rename to nervtn_server/apps/imapd/apps.py diff --git a/nervtn/server/apps/intervention/migrations/__init__.py b/nervtn_server/apps/imapd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/intervention/migrations/__init__.py rename to nervtn_server/apps/imapd/migrations/__init__.py diff --git a/nervtn/server/apps/imapd/models/__init__.py b/nervtn_server/apps/imapd/models/__init__.py similarity index 100% rename from nervtn/server/apps/imapd/models/__init__.py rename to nervtn_server/apps/imapd/models/__init__.py diff --git a/nervtn/server/apps/imapd/tests.py b/nervtn_server/apps/imapd/tests.py similarity index 100% rename from nervtn/server/apps/imapd/tests.py rename to nervtn_server/apps/imapd/tests.py diff --git a/nervtn/server/apps/imapd/views.py b/nervtn_server/apps/imapd/views.py similarity index 100% rename from nervtn/server/apps/imapd/views.py rename to nervtn_server/apps/imapd/views.py diff --git a/nervtn/server/apps/intervention/README.rst b/nervtn_server/apps/intervention/README.rst similarity index 100% rename from nervtn/server/apps/intervention/README.rst rename to nervtn_server/apps/intervention/README.rst diff --git a/nervtn/server/apps/imapd/__init__.py b/nervtn_server/apps/intervention/__init__.py similarity index 100% rename from nervtn/server/apps/imapd/__init__.py rename to nervtn_server/apps/intervention/__init__.py diff --git a/nervtn/server/apps/intervention/admin.py b/nervtn_server/apps/intervention/admin.py similarity index 100% rename from nervtn/server/apps/intervention/admin.py rename to nervtn_server/apps/intervention/admin.py diff --git a/nervtn/server/apps/intervention/apps.py b/nervtn_server/apps/intervention/apps.py similarity index 100% rename from nervtn/server/apps/intervention/apps.py rename to nervtn_server/apps/intervention/apps.py diff --git a/nervtn/server/apps/interview/migrations/__init__.py b/nervtn_server/apps/intervention/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/interview/migrations/__init__.py rename to nervtn_server/apps/intervention/migrations/__init__.py diff --git a/nervtn/server/apps/intervention/models/__init__.py b/nervtn_server/apps/intervention/models/__init__.py similarity index 100% rename from nervtn/server/apps/intervention/models/__init__.py rename to nervtn_server/apps/intervention/models/__init__.py diff --git a/nervtn/server/apps/intervention/tests.py b/nervtn_server/apps/intervention/tests.py similarity index 100% rename from nervtn/server/apps/intervention/tests.py rename to nervtn_server/apps/intervention/tests.py diff --git a/nervtn/server/apps/intervention/views.py b/nervtn_server/apps/intervention/views.py similarity index 100% rename from nervtn/server/apps/intervention/views.py rename to nervtn_server/apps/intervention/views.py diff --git a/nervtn/server/apps/interview/README.rst b/nervtn_server/apps/interview/README.rst similarity index 100% rename from nervtn/server/apps/interview/README.rst rename to nervtn_server/apps/interview/README.rst diff --git a/nervtn/server/apps/intervention/__init__.py b/nervtn_server/apps/interview/__init__.py similarity index 100% rename from nervtn/server/apps/intervention/__init__.py rename to nervtn_server/apps/interview/__init__.py diff --git a/nervtn/server/apps/interview/admin.py b/nervtn_server/apps/interview/admin.py similarity index 100% rename from nervtn/server/apps/interview/admin.py rename to nervtn_server/apps/interview/admin.py diff --git a/nervtn/server/apps/interview/apps.py b/nervtn_server/apps/interview/apps.py similarity index 100% rename from nervtn/server/apps/interview/apps.py rename to nervtn_server/apps/interview/apps.py diff --git a/nervtn/server/apps/inventory/migrations/__init__.py b/nervtn_server/apps/interview/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/inventory/migrations/__init__.py rename to nervtn_server/apps/interview/migrations/__init__.py diff --git a/nervtn/server/apps/interview/models/__init__.py b/nervtn_server/apps/interview/models/__init__.py similarity index 100% rename from nervtn/server/apps/interview/models/__init__.py rename to nervtn_server/apps/interview/models/__init__.py diff --git a/nervtn/server/apps/interview/tests.py b/nervtn_server/apps/interview/tests.py similarity index 100% rename from nervtn/server/apps/interview/tests.py rename to nervtn_server/apps/interview/tests.py diff --git a/nervtn/server/apps/interview/views.py b/nervtn_server/apps/interview/views.py similarity index 100% rename from nervtn/server/apps/interview/views.py rename to nervtn_server/apps/interview/views.py diff --git a/nervtn/server/apps/inventory/README.rst b/nervtn_server/apps/inventory/README.rst similarity index 100% rename from nervtn/server/apps/inventory/README.rst rename to nervtn_server/apps/inventory/README.rst diff --git a/nervtn/server/apps/interview/__init__.py b/nervtn_server/apps/inventory/__init__.py similarity index 100% rename from nervtn/server/apps/interview/__init__.py rename to nervtn_server/apps/inventory/__init__.py diff --git a/nervtn/server/apps/inventory/admin.py b/nervtn_server/apps/inventory/admin.py similarity index 100% rename from nervtn/server/apps/inventory/admin.py rename to nervtn_server/apps/inventory/admin.py diff --git a/nervtn/server/apps/inventory/apps.py b/nervtn_server/apps/inventory/apps.py similarity index 100% rename from nervtn/server/apps/inventory/apps.py rename to nervtn_server/apps/inventory/apps.py diff --git a/nervtn/server/apps/invoice/migrations/__init__.py b/nervtn_server/apps/inventory/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/invoice/migrations/__init__.py rename to nervtn_server/apps/inventory/migrations/__init__.py diff --git a/nervtn/server/apps/inventory/models/__init__.py b/nervtn_server/apps/inventory/models/__init__.py similarity index 100% rename from nervtn/server/apps/inventory/models/__init__.py rename to nervtn_server/apps/inventory/models/__init__.py diff --git a/nervtn/server/apps/inventory/tests.py b/nervtn_server/apps/inventory/tests.py similarity index 100% rename from nervtn/server/apps/inventory/tests.py rename to nervtn_server/apps/inventory/tests.py diff --git a/nervtn/server/apps/inventory/views.py b/nervtn_server/apps/inventory/views.py similarity index 100% rename from nervtn/server/apps/inventory/views.py rename to nervtn_server/apps/inventory/views.py diff --git a/nervtn/server/apps/invoice/README.rst b/nervtn_server/apps/invoice/README.rst similarity index 100% rename from nervtn/server/apps/invoice/README.rst rename to nervtn_server/apps/invoice/README.rst diff --git a/nervtn/server/apps/inventory/__init__.py b/nervtn_server/apps/invoice/__init__.py similarity index 100% rename from nervtn/server/apps/inventory/__init__.py rename to nervtn_server/apps/invoice/__init__.py diff --git a/nervtn/server/apps/invoice/admin.py b/nervtn_server/apps/invoice/admin.py similarity index 100% rename from nervtn/server/apps/invoice/admin.py rename to nervtn_server/apps/invoice/admin.py diff --git a/nervtn/server/apps/invoice/apps.py b/nervtn_server/apps/invoice/apps.py similarity index 100% rename from nervtn/server/apps/invoice/apps.py rename to nervtn_server/apps/invoice/apps.py diff --git a/nervtn/server/apps/jmapd/migrations/__init__.py b/nervtn_server/apps/invoice/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/jmapd/migrations/__init__.py rename to nervtn_server/apps/invoice/migrations/__init__.py diff --git a/nervtn/server/apps/invoice/models/__init__.py b/nervtn_server/apps/invoice/models/__init__.py similarity index 100% rename from nervtn/server/apps/invoice/models/__init__.py rename to nervtn_server/apps/invoice/models/__init__.py diff --git a/nervtn/server/apps/invoice/tests.py b/nervtn_server/apps/invoice/tests.py similarity index 100% rename from nervtn/server/apps/invoice/tests.py rename to nervtn_server/apps/invoice/tests.py diff --git a/nervtn/server/apps/invoice/views.py b/nervtn_server/apps/invoice/views.py similarity index 100% rename from nervtn/server/apps/invoice/views.py rename to nervtn_server/apps/invoice/views.py diff --git a/nervtn/server/apps/jmapd/README.rst b/nervtn_server/apps/jmapd/README.rst similarity index 100% rename from nervtn/server/apps/jmapd/README.rst rename to nervtn_server/apps/jmapd/README.rst diff --git a/nervtn/server/apps/invoice/__init__.py b/nervtn_server/apps/jmapd/__init__.py similarity index 100% rename from nervtn/server/apps/invoice/__init__.py rename to nervtn_server/apps/jmapd/__init__.py diff --git a/nervtn/server/apps/jmapd/admin.py b/nervtn_server/apps/jmapd/admin.py similarity index 100% rename from nervtn/server/apps/jmapd/admin.py rename to nervtn_server/apps/jmapd/admin.py diff --git a/nervtn/server/apps/jmapd/apps.py b/nervtn_server/apps/jmapd/apps.py similarity index 100% rename from nervtn/server/apps/jmapd/apps.py rename to nervtn_server/apps/jmapd/apps.py diff --git a/nervtn/server/apps/kmipd/migrations/__init__.py b/nervtn_server/apps/jmapd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/kmipd/migrations/__init__.py rename to nervtn_server/apps/jmapd/migrations/__init__.py diff --git a/nervtn/server/apps/jmapd/models/__init__.py b/nervtn_server/apps/jmapd/models/__init__.py similarity index 100% rename from nervtn/server/apps/jmapd/models/__init__.py rename to nervtn_server/apps/jmapd/models/__init__.py diff --git a/nervtn/server/apps/jmapd/tests.py b/nervtn_server/apps/jmapd/tests.py similarity index 100% rename from nervtn/server/apps/jmapd/tests.py rename to nervtn_server/apps/jmapd/tests.py diff --git a/nervtn/server/apps/jmapd/views.py b/nervtn_server/apps/jmapd/views.py similarity index 100% rename from nervtn/server/apps/jmapd/views.py rename to nervtn_server/apps/jmapd/views.py diff --git a/nervtn/server/apps/kmipd/README.rst b/nervtn_server/apps/kmipd/README.rst similarity index 100% rename from nervtn/server/apps/kmipd/README.rst rename to nervtn_server/apps/kmipd/README.rst diff --git a/nervtn/server/apps/jmapd/__init__.py b/nervtn_server/apps/kmipd/__init__.py similarity index 100% rename from nervtn/server/apps/jmapd/__init__.py rename to nervtn_server/apps/kmipd/__init__.py diff --git a/nervtn/server/apps/kmipd/admin.py b/nervtn_server/apps/kmipd/admin.py similarity index 100% rename from nervtn/server/apps/kmipd/admin.py rename to nervtn_server/apps/kmipd/admin.py diff --git a/nervtn/server/apps/kmipd/apps.py b/nervtn_server/apps/kmipd/apps.py similarity index 100% rename from nervtn/server/apps/kmipd/apps.py rename to nervtn_server/apps/kmipd/apps.py diff --git a/nervtn/server/apps/ldapd/migrations/__init__.py b/nervtn_server/apps/kmipd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/ldapd/migrations/__init__.py rename to nervtn_server/apps/kmipd/migrations/__init__.py diff --git a/nervtn/server/apps/kmipd/models/__init__.py b/nervtn_server/apps/kmipd/models/__init__.py similarity index 100% rename from nervtn/server/apps/kmipd/models/__init__.py rename to nervtn_server/apps/kmipd/models/__init__.py diff --git a/nervtn/server/apps/kmipd/tests.py b/nervtn_server/apps/kmipd/tests.py similarity index 100% rename from nervtn/server/apps/kmipd/tests.py rename to nervtn_server/apps/kmipd/tests.py diff --git a/nervtn/server/apps/kmipd/views.py b/nervtn_server/apps/kmipd/views.py similarity index 100% rename from nervtn/server/apps/kmipd/views.py rename to nervtn_server/apps/kmipd/views.py diff --git a/nervtn/server/apps/ldapd/README.rst b/nervtn_server/apps/ldapd/README.rst similarity index 100% rename from nervtn/server/apps/ldapd/README.rst rename to nervtn_server/apps/ldapd/README.rst diff --git a/nervtn/server/apps/kmipd/__init__.py b/nervtn_server/apps/ldapd/__init__.py similarity index 100% rename from nervtn/server/apps/kmipd/__init__.py rename to nervtn_server/apps/ldapd/__init__.py diff --git a/nervtn/server/apps/ldapd/admin.py b/nervtn_server/apps/ldapd/admin.py similarity index 100% rename from nervtn/server/apps/ldapd/admin.py rename to nervtn_server/apps/ldapd/admin.py diff --git a/nervtn/server/apps/ldapd/apps.py b/nervtn_server/apps/ldapd/apps.py similarity index 100% rename from nervtn/server/apps/ldapd/apps.py rename to nervtn_server/apps/ldapd/apps.py diff --git a/nervtn/server/apps/learning/migrations/__init__.py b/nervtn_server/apps/ldapd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/learning/migrations/__init__.py rename to nervtn_server/apps/ldapd/migrations/__init__.py diff --git a/nervtn/server/apps/ldapd/models/__init__.py b/nervtn_server/apps/ldapd/models/__init__.py similarity index 100% rename from nervtn/server/apps/ldapd/models/__init__.py rename to nervtn_server/apps/ldapd/models/__init__.py diff --git a/nervtn/server/apps/ldapd/tests.py b/nervtn_server/apps/ldapd/tests.py similarity index 100% rename from nervtn/server/apps/ldapd/tests.py rename to nervtn_server/apps/ldapd/tests.py diff --git a/nervtn/server/apps/ldapd/views.py b/nervtn_server/apps/ldapd/views.py similarity index 100% rename from nervtn/server/apps/ldapd/views.py rename to nervtn_server/apps/ldapd/views.py diff --git a/nervtn/server/apps/learning/README.rst b/nervtn_server/apps/learning/README.rst similarity index 100% rename from nervtn/server/apps/learning/README.rst rename to nervtn_server/apps/learning/README.rst diff --git a/nervtn/server/apps/ldapd/__init__.py b/nervtn_server/apps/learning/__init__.py similarity index 100% rename from nervtn/server/apps/ldapd/__init__.py rename to nervtn_server/apps/learning/__init__.py diff --git a/nervtn/server/apps/learning/admin.py b/nervtn_server/apps/learning/admin.py similarity index 100% rename from nervtn/server/apps/learning/admin.py rename to nervtn_server/apps/learning/admin.py diff --git a/nervtn/server/apps/learning/apps.py b/nervtn_server/apps/learning/apps.py similarity index 100% rename from nervtn/server/apps/learning/apps.py rename to nervtn_server/apps/learning/apps.py diff --git a/nervtn/server/apps/license/migrations/__init__.py b/nervtn_server/apps/learning/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/license/migrations/__init__.py rename to nervtn_server/apps/learning/migrations/__init__.py diff --git a/nervtn/server/apps/learning/models/__init__.py b/nervtn_server/apps/learning/models/__init__.py similarity index 100% rename from nervtn/server/apps/learning/models/__init__.py rename to nervtn_server/apps/learning/models/__init__.py diff --git a/nervtn/server/apps/learning/tests.py b/nervtn_server/apps/learning/tests.py similarity index 100% rename from nervtn/server/apps/learning/tests.py rename to nervtn_server/apps/learning/tests.py diff --git a/nervtn/server/apps/learning/views.py b/nervtn_server/apps/learning/views.py similarity index 100% rename from nervtn/server/apps/learning/views.py rename to nervtn_server/apps/learning/views.py diff --git a/nervtn/server/apps/license/README.rst b/nervtn_server/apps/license/README.rst similarity index 100% rename from nervtn/server/apps/license/README.rst rename to nervtn_server/apps/license/README.rst diff --git a/nervtn/server/apps/learning/__init__.py b/nervtn_server/apps/license/__init__.py similarity index 100% rename from nervtn/server/apps/learning/__init__.py rename to nervtn_server/apps/license/__init__.py diff --git a/nervtn/server/apps/license/admin.py b/nervtn_server/apps/license/admin.py similarity index 100% rename from nervtn/server/apps/license/admin.py rename to nervtn_server/apps/license/admin.py diff --git a/nervtn/server/apps/license/apps.py b/nervtn_server/apps/license/apps.py similarity index 100% rename from nervtn/server/apps/license/apps.py rename to nervtn_server/apps/license/apps.py diff --git a/nervtn/server/apps/mail/migrations/__init__.py b/nervtn_server/apps/license/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/mail/migrations/__init__.py rename to nervtn_server/apps/license/migrations/__init__.py diff --git a/nervtn/server/apps/license/models/__init__.py b/nervtn_server/apps/license/models/__init__.py similarity index 100% rename from nervtn/server/apps/license/models/__init__.py rename to nervtn_server/apps/license/models/__init__.py diff --git a/nervtn/server/apps/license/tests.py b/nervtn_server/apps/license/tests.py similarity index 100% rename from nervtn/server/apps/license/tests.py rename to nervtn_server/apps/license/tests.py diff --git a/nervtn/server/apps/license/views.py b/nervtn_server/apps/license/views.py similarity index 100% rename from nervtn/server/apps/license/views.py rename to nervtn_server/apps/license/views.py diff --git a/nervtn/server/apps/mail/README.rst b/nervtn_server/apps/mail/README.rst similarity index 100% rename from nervtn/server/apps/mail/README.rst rename to nervtn_server/apps/mail/README.rst diff --git a/nervtn/server/apps/license/__init__.py b/nervtn_server/apps/mail/__init__.py similarity index 100% rename from nervtn/server/apps/license/__init__.py rename to nervtn_server/apps/mail/__init__.py diff --git a/nervtn/server/apps/mail/admin.py b/nervtn_server/apps/mail/admin.py similarity index 100% rename from nervtn/server/apps/mail/admin.py rename to nervtn_server/apps/mail/admin.py diff --git a/nervtn/server/apps/mail/apps.py b/nervtn_server/apps/mail/apps.py similarity index 100% rename from nervtn/server/apps/mail/apps.py rename to nervtn_server/apps/mail/apps.py diff --git a/nervtn/server/apps/manufacturing/migrations/__init__.py b/nervtn_server/apps/mail/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/manufacturing/migrations/__init__.py rename to nervtn_server/apps/mail/migrations/__init__.py diff --git a/nervtn/server/apps/mail/models/__init__.py b/nervtn_server/apps/mail/models/__init__.py similarity index 100% rename from nervtn/server/apps/mail/models/__init__.py rename to nervtn_server/apps/mail/models/__init__.py diff --git a/nervtn/server/apps/mail/tests.py b/nervtn_server/apps/mail/tests.py similarity index 100% rename from nervtn/server/apps/mail/tests.py rename to nervtn_server/apps/mail/tests.py diff --git a/nervtn/server/apps/mail/views.py b/nervtn_server/apps/mail/views.py similarity index 100% rename from nervtn/server/apps/mail/views.py rename to nervtn_server/apps/mail/views.py diff --git a/nervtn/server/apps/manufacturing/README.rst b/nervtn_server/apps/manufacturing/README.rst similarity index 100% rename from nervtn/server/apps/manufacturing/README.rst rename to nervtn_server/apps/manufacturing/README.rst diff --git a/nervtn/server/apps/mail/__init__.py b/nervtn_server/apps/manufacturing/__init__.py similarity index 100% rename from nervtn/server/apps/mail/__init__.py rename to nervtn_server/apps/manufacturing/__init__.py diff --git a/nervtn/server/apps/manufacturing/admin.py b/nervtn_server/apps/manufacturing/admin.py similarity index 100% rename from nervtn/server/apps/manufacturing/admin.py rename to nervtn_server/apps/manufacturing/admin.py diff --git a/nervtn/server/apps/manufacturing/apps.py b/nervtn_server/apps/manufacturing/apps.py similarity index 100% rename from nervtn/server/apps/manufacturing/apps.py rename to nervtn_server/apps/manufacturing/apps.py diff --git a/nervtn/server/apps/monitoring/migrations/__init__.py b/nervtn_server/apps/manufacturing/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/monitoring/migrations/__init__.py rename to nervtn_server/apps/manufacturing/migrations/__init__.py diff --git a/nervtn/server/apps/manufacturing/models/__init__.py b/nervtn_server/apps/manufacturing/models/__init__.py similarity index 100% rename from nervtn/server/apps/manufacturing/models/__init__.py rename to nervtn_server/apps/manufacturing/models/__init__.py diff --git a/nervtn/server/apps/manufacturing/tests.py b/nervtn_server/apps/manufacturing/tests.py similarity index 100% rename from nervtn/server/apps/manufacturing/tests.py rename to nervtn_server/apps/manufacturing/tests.py diff --git a/nervtn/server/apps/manufacturing/views.py b/nervtn_server/apps/manufacturing/views.py similarity index 100% rename from nervtn/server/apps/manufacturing/views.py rename to nervtn_server/apps/manufacturing/views.py diff --git a/nervtn/server/apps/monitoring/README.rst b/nervtn_server/apps/monitoring/README.rst similarity index 100% rename from nervtn/server/apps/monitoring/README.rst rename to nervtn_server/apps/monitoring/README.rst diff --git a/nervtn/server/apps/manufacturing/__init__.py b/nervtn_server/apps/monitoring/__init__.py similarity index 100% rename from nervtn/server/apps/manufacturing/__init__.py rename to nervtn_server/apps/monitoring/__init__.py diff --git a/nervtn/server/apps/monitoring/admin.py b/nervtn_server/apps/monitoring/admin.py similarity index 100% rename from nervtn/server/apps/monitoring/admin.py rename to nervtn_server/apps/monitoring/admin.py diff --git a/nervtn/server/apps/monitoring/apps.py b/nervtn_server/apps/monitoring/apps.py similarity index 100% rename from nervtn/server/apps/monitoring/apps.py rename to nervtn_server/apps/monitoring/apps.py diff --git a/nervtn/server/apps/news/migrations/__init__.py b/nervtn_server/apps/monitoring/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/news/migrations/__init__.py rename to nervtn_server/apps/monitoring/migrations/__init__.py diff --git a/nervtn/server/apps/monitoring/models/__init__.py b/nervtn_server/apps/monitoring/models/__init__.py similarity index 100% rename from nervtn/server/apps/monitoring/models/__init__.py rename to nervtn_server/apps/monitoring/models/__init__.py diff --git a/nervtn/server/apps/monitoring/tests.py b/nervtn_server/apps/monitoring/tests.py similarity index 100% rename from nervtn/server/apps/monitoring/tests.py rename to nervtn_server/apps/monitoring/tests.py diff --git a/nervtn/server/apps/monitoring/views.py b/nervtn_server/apps/monitoring/views.py similarity index 100% rename from nervtn/server/apps/monitoring/views.py rename to nervtn_server/apps/monitoring/views.py diff --git a/nervtn/server/apps/news/README.rst b/nervtn_server/apps/news/README.rst similarity index 100% rename from nervtn/server/apps/news/README.rst rename to nervtn_server/apps/news/README.rst diff --git a/nervtn/server/apps/monitoring/__init__.py b/nervtn_server/apps/news/__init__.py similarity index 100% rename from nervtn/server/apps/monitoring/__init__.py rename to nervtn_server/apps/news/__init__.py diff --git a/nervtn/server/apps/news/admin.py b/nervtn_server/apps/news/admin.py similarity index 100% rename from nervtn/server/apps/news/admin.py rename to nervtn_server/apps/news/admin.py diff --git a/nervtn/server/apps/news/apps.py b/nervtn_server/apps/news/apps.py similarity index 100% rename from nervtn/server/apps/news/apps.py rename to nervtn_server/apps/news/apps.py diff --git a/nervtn/server/apps/notification/migrations/__init__.py b/nervtn_server/apps/news/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/notification/migrations/__init__.py rename to nervtn_server/apps/news/migrations/__init__.py diff --git a/nervtn/server/apps/news/models/__init__.py b/nervtn_server/apps/news/models/__init__.py similarity index 100% rename from nervtn/server/apps/news/models/__init__.py rename to nervtn_server/apps/news/models/__init__.py diff --git a/nervtn/server/apps/news/tests.py b/nervtn_server/apps/news/tests.py similarity index 100% rename from nervtn/server/apps/news/tests.py rename to nervtn_server/apps/news/tests.py diff --git a/nervtn/server/apps/news/views.py b/nervtn_server/apps/news/views.py similarity index 100% rename from nervtn/server/apps/news/views.py rename to nervtn_server/apps/news/views.py diff --git a/nervtn/server/apps/notification/README.rst b/nervtn_server/apps/notification/README.rst similarity index 100% rename from nervtn/server/apps/notification/README.rst rename to nervtn_server/apps/notification/README.rst diff --git a/nervtn/server/apps/news/__init__.py b/nervtn_server/apps/notification/__init__.py similarity index 100% rename from nervtn/server/apps/news/__init__.py rename to nervtn_server/apps/notification/__init__.py diff --git a/nervtn/server/apps/notification/admin.py b/nervtn_server/apps/notification/admin.py similarity index 100% rename from nervtn/server/apps/notification/admin.py rename to nervtn_server/apps/notification/admin.py diff --git a/nervtn/server/apps/notification/apps.py b/nervtn_server/apps/notification/apps.py similarity index 100% rename from nervtn/server/apps/notification/apps.py rename to nervtn_server/apps/notification/apps.py diff --git a/nervtn/server/apps/phone/migrations/__init__.py b/nervtn_server/apps/notification/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/phone/migrations/__init__.py rename to nervtn_server/apps/notification/migrations/__init__.py diff --git a/nervtn/server/apps/notification/models/__init__.py b/nervtn_server/apps/notification/models/__init__.py similarity index 100% rename from nervtn/server/apps/notification/models/__init__.py rename to nervtn_server/apps/notification/models/__init__.py diff --git a/nervtn/server/apps/notification/tests.py b/nervtn_server/apps/notification/tests.py similarity index 100% rename from nervtn/server/apps/notification/tests.py rename to nervtn_server/apps/notification/tests.py diff --git a/nervtn/server/apps/notification/views.py b/nervtn_server/apps/notification/views.py similarity index 100% rename from nervtn/server/apps/notification/views.py rename to nervtn_server/apps/notification/views.py diff --git a/nervtn/server/apps/phone/README.rst b/nervtn_server/apps/phone/README.rst similarity index 100% rename from nervtn/server/apps/phone/README.rst rename to nervtn_server/apps/phone/README.rst diff --git a/nervtn/server/apps/notification/__init__.py b/nervtn_server/apps/phone/__init__.py similarity index 100% rename from nervtn/server/apps/notification/__init__.py rename to nervtn_server/apps/phone/__init__.py diff --git a/nervtn/server/apps/phone/admin.py b/nervtn_server/apps/phone/admin.py similarity index 100% rename from nervtn/server/apps/phone/admin.py rename to nervtn_server/apps/phone/admin.py diff --git a/nervtn/server/apps/phone/apps.py b/nervtn_server/apps/phone/apps.py similarity index 100% rename from nervtn/server/apps/phone/apps.py rename to nervtn_server/apps/phone/apps.py diff --git a/nervtn/server/apps/pointofsale/migrations/__init__.py b/nervtn_server/apps/phone/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/pointofsale/migrations/__init__.py rename to nervtn_server/apps/phone/migrations/__init__.py diff --git a/nervtn/server/apps/phone/models/__init__.py b/nervtn_server/apps/phone/models/__init__.py similarity index 100% rename from nervtn/server/apps/phone/models/__init__.py rename to nervtn_server/apps/phone/models/__init__.py diff --git a/nervtn/server/apps/phone/tests.py b/nervtn_server/apps/phone/tests.py similarity index 100% rename from nervtn/server/apps/phone/tests.py rename to nervtn_server/apps/phone/tests.py diff --git a/nervtn/server/apps/phone/views.py b/nervtn_server/apps/phone/views.py similarity index 100% rename from nervtn/server/apps/phone/views.py rename to nervtn_server/apps/phone/views.py diff --git a/nervtn/server/apps/pointofsale/README.rst b/nervtn_server/apps/pointofsale/README.rst similarity index 100% rename from nervtn/server/apps/pointofsale/README.rst rename to nervtn_server/apps/pointofsale/README.rst diff --git a/nervtn/server/apps/phone/__init__.py b/nervtn_server/apps/pointofsale/__init__.py similarity index 100% rename from nervtn/server/apps/phone/__init__.py rename to nervtn_server/apps/pointofsale/__init__.py diff --git a/nervtn/server/apps/pointofsale/admin.py b/nervtn_server/apps/pointofsale/admin.py similarity index 100% rename from nervtn/server/apps/pointofsale/admin.py rename to nervtn_server/apps/pointofsale/admin.py diff --git a/nervtn/server/apps/pointofsale/apps.py b/nervtn_server/apps/pointofsale/apps.py similarity index 100% rename from nervtn/server/apps/pointofsale/apps.py rename to nervtn_server/apps/pointofsale/apps.py diff --git a/nervtn/server/apps/pollution/migrations/__init__.py b/nervtn_server/apps/pointofsale/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/pollution/migrations/__init__.py rename to nervtn_server/apps/pointofsale/migrations/__init__.py diff --git a/nervtn/server/apps/pointofsale/models/__init__.py b/nervtn_server/apps/pointofsale/models/__init__.py similarity index 100% rename from nervtn/server/apps/pointofsale/models/__init__.py rename to nervtn_server/apps/pointofsale/models/__init__.py diff --git a/nervtn/server/apps/pointofsale/tests.py b/nervtn_server/apps/pointofsale/tests.py similarity index 100% rename from nervtn/server/apps/pointofsale/tests.py rename to nervtn_server/apps/pointofsale/tests.py diff --git a/nervtn/server/apps/pointofsale/views.py b/nervtn_server/apps/pointofsale/views.py similarity index 100% rename from nervtn/server/apps/pointofsale/views.py rename to nervtn_server/apps/pointofsale/views.py diff --git a/nervtn/server/apps/pollution/README.rst b/nervtn_server/apps/pollution/README.rst similarity index 100% rename from nervtn/server/apps/pollution/README.rst rename to nervtn_server/apps/pollution/README.rst diff --git a/nervtn/server/apps/pointofsale/__init__.py b/nervtn_server/apps/pollution/__init__.py similarity index 100% rename from nervtn/server/apps/pointofsale/__init__.py rename to nervtn_server/apps/pollution/__init__.py diff --git a/nervtn/server/apps/pollution/admin.py b/nervtn_server/apps/pollution/admin.py similarity index 100% rename from nervtn/server/apps/pollution/admin.py rename to nervtn_server/apps/pollution/admin.py diff --git a/nervtn/server/apps/pollution/apps.py b/nervtn_server/apps/pollution/apps.py similarity index 100% rename from nervtn/server/apps/pollution/apps.py rename to nervtn_server/apps/pollution/apps.py diff --git a/nervtn/server/apps/print/migrations/__init__.py b/nervtn_server/apps/pollution/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/print/migrations/__init__.py rename to nervtn_server/apps/pollution/migrations/__init__.py diff --git a/nervtn/server/apps/pollution/models/__init__.py b/nervtn_server/apps/pollution/models/__init__.py similarity index 100% rename from nervtn/server/apps/pollution/models/__init__.py rename to nervtn_server/apps/pollution/models/__init__.py diff --git a/nervtn/server/apps/pollution/tests.py b/nervtn_server/apps/pollution/tests.py similarity index 100% rename from nervtn/server/apps/pollution/tests.py rename to nervtn_server/apps/pollution/tests.py diff --git a/nervtn/server/apps/pollution/views.py b/nervtn_server/apps/pollution/views.py similarity index 100% rename from nervtn/server/apps/pollution/views.py rename to nervtn_server/apps/pollution/views.py diff --git a/nervtn/server/apps/print/README.rst b/nervtn_server/apps/print/README.rst similarity index 100% rename from nervtn/server/apps/print/README.rst rename to nervtn_server/apps/print/README.rst diff --git a/nervtn/server/apps/pollution/__init__.py b/nervtn_server/apps/print/__init__.py similarity index 100% rename from nervtn/server/apps/pollution/__init__.py rename to nervtn_server/apps/print/__init__.py diff --git a/nervtn/server/apps/print/admin.py b/nervtn_server/apps/print/admin.py similarity index 100% rename from nervtn/server/apps/print/admin.py rename to nervtn_server/apps/print/admin.py diff --git a/nervtn/server/apps/print/apps.py b/nervtn_server/apps/print/apps.py similarity index 100% rename from nervtn/server/apps/print/apps.py rename to nervtn_server/apps/print/apps.py diff --git a/nervtn/server/apps/privacy/migrations/__init__.py b/nervtn_server/apps/print/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/privacy/migrations/__init__.py rename to nervtn_server/apps/print/migrations/__init__.py diff --git a/nervtn/server/apps/print/models/__init__.py b/nervtn_server/apps/print/models/__init__.py similarity index 100% rename from nervtn/server/apps/print/models/__init__.py rename to nervtn_server/apps/print/models/__init__.py diff --git a/nervtn/server/apps/print/tests.py b/nervtn_server/apps/print/tests.py similarity index 100% rename from nervtn/server/apps/print/tests.py rename to nervtn_server/apps/print/tests.py diff --git a/nervtn/server/apps/print/views.py b/nervtn_server/apps/print/views.py similarity index 100% rename from nervtn/server/apps/print/views.py rename to nervtn_server/apps/print/views.py diff --git a/nervtn/server/apps/privacy/README.rst b/nervtn_server/apps/privacy/README.rst similarity index 100% rename from nervtn/server/apps/privacy/README.rst rename to nervtn_server/apps/privacy/README.rst diff --git a/nervtn/server/apps/print/__init__.py b/nervtn_server/apps/privacy/__init__.py similarity index 100% rename from nervtn/server/apps/print/__init__.py rename to nervtn_server/apps/privacy/__init__.py diff --git a/nervtn/server/apps/privacy/admin.py b/nervtn_server/apps/privacy/admin.py similarity index 100% rename from nervtn/server/apps/privacy/admin.py rename to nervtn_server/apps/privacy/admin.py diff --git a/nervtn/server/apps/privacy/apps.py b/nervtn_server/apps/privacy/apps.py similarity index 100% rename from nervtn/server/apps/privacy/apps.py rename to nervtn_server/apps/privacy/apps.py diff --git a/nervtn/server/apps/project/migrations/__init__.py b/nervtn_server/apps/privacy/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/project/migrations/__init__.py rename to nervtn_server/apps/privacy/migrations/__init__.py diff --git a/nervtn/server/apps/privacy/models/__init__.py b/nervtn_server/apps/privacy/models/__init__.py similarity index 100% rename from nervtn/server/apps/privacy/models/__init__.py rename to nervtn_server/apps/privacy/models/__init__.py diff --git a/nervtn/server/apps/privacy/tests.py b/nervtn_server/apps/privacy/tests.py similarity index 100% rename from nervtn/server/apps/privacy/tests.py rename to nervtn_server/apps/privacy/tests.py diff --git a/nervtn/server/apps/privacy/views.py b/nervtn_server/apps/privacy/views.py similarity index 100% rename from nervtn/server/apps/privacy/views.py rename to nervtn_server/apps/privacy/views.py diff --git a/nervtn/server/apps/project/README.rst b/nervtn_server/apps/project/README.rst similarity index 100% rename from nervtn/server/apps/project/README.rst rename to nervtn_server/apps/project/README.rst diff --git a/nervtn/server/apps/privacy/__init__.py b/nervtn_server/apps/project/__init__.py similarity index 100% rename from nervtn/server/apps/privacy/__init__.py rename to nervtn_server/apps/project/__init__.py diff --git a/nervtn/server/apps/project/admin.py b/nervtn_server/apps/project/admin.py similarity index 100% rename from nervtn/server/apps/project/admin.py rename to nervtn_server/apps/project/admin.py diff --git a/nervtn/server/apps/project/apps.py b/nervtn_server/apps/project/apps.py similarity index 100% rename from nervtn/server/apps/project/apps.py rename to nervtn_server/apps/project/apps.py diff --git a/nervtn/server/apps/quality/migrations/__init__.py b/nervtn_server/apps/project/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/quality/migrations/__init__.py rename to nervtn_server/apps/project/migrations/__init__.py diff --git a/nervtn/server/apps/project/models/__init__.py b/nervtn_server/apps/project/models/__init__.py similarity index 100% rename from nervtn/server/apps/project/models/__init__.py rename to nervtn_server/apps/project/models/__init__.py diff --git a/nervtn/server/apps/project/tests.py b/nervtn_server/apps/project/tests.py similarity index 100% rename from nervtn/server/apps/project/tests.py rename to nervtn_server/apps/project/tests.py diff --git a/nervtn/server/apps/project/views.py b/nervtn_server/apps/project/views.py similarity index 100% rename from nervtn/server/apps/project/views.py rename to nervtn_server/apps/project/views.py diff --git a/nervtn/server/apps/quality/README.rst b/nervtn_server/apps/quality/README.rst similarity index 100% rename from nervtn/server/apps/quality/README.rst rename to nervtn_server/apps/quality/README.rst diff --git a/nervtn/server/apps/project/__init__.py b/nervtn_server/apps/quality/__init__.py similarity index 100% rename from nervtn/server/apps/project/__init__.py rename to nervtn_server/apps/quality/__init__.py diff --git a/nervtn/server/apps/quality/admin.py b/nervtn_server/apps/quality/admin.py similarity index 100% rename from nervtn/server/apps/quality/admin.py rename to nervtn_server/apps/quality/admin.py diff --git a/nervtn/server/apps/quality/apps.py b/nervtn_server/apps/quality/apps.py similarity index 100% rename from nervtn/server/apps/quality/apps.py rename to nervtn_server/apps/quality/apps.py diff --git a/nervtn/server/apps/queue/migrations/__init__.py b/nervtn_server/apps/quality/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/queue/migrations/__init__.py rename to nervtn_server/apps/quality/migrations/__init__.py diff --git a/nervtn/server/apps/quality/models/__init__.py b/nervtn_server/apps/quality/models/__init__.py similarity index 100% rename from nervtn/server/apps/quality/models/__init__.py rename to nervtn_server/apps/quality/models/__init__.py diff --git a/nervtn/server/apps/quality/tests.py b/nervtn_server/apps/quality/tests.py similarity index 100% rename from nervtn/server/apps/quality/tests.py rename to nervtn_server/apps/quality/tests.py diff --git a/nervtn/server/apps/quality/views.py b/nervtn_server/apps/quality/views.py similarity index 100% rename from nervtn/server/apps/quality/views.py rename to nervtn_server/apps/quality/views.py diff --git a/nervtn/server/apps/queue/README.rst b/nervtn_server/apps/queue/README.rst similarity index 100% rename from nervtn/server/apps/queue/README.rst rename to nervtn_server/apps/queue/README.rst diff --git a/nervtn/server/apps/quality/__init__.py b/nervtn_server/apps/queue/__init__.py similarity index 100% rename from nervtn/server/apps/quality/__init__.py rename to nervtn_server/apps/queue/__init__.py diff --git a/nervtn/server/apps/queue/admin.py b/nervtn_server/apps/queue/admin.py similarity index 100% rename from nervtn/server/apps/queue/admin.py rename to nervtn_server/apps/queue/admin.py diff --git a/nervtn/server/apps/queue/apps.py b/nervtn_server/apps/queue/apps.py similarity index 100% rename from nervtn/server/apps/queue/apps.py rename to nervtn_server/apps/queue/apps.py diff --git a/nervtn/server/apps/restoration/migrations/__init__.py b/nervtn_server/apps/queue/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/restoration/migrations/__init__.py rename to nervtn_server/apps/queue/migrations/__init__.py diff --git a/nervtn/server/apps/queue/models/__init__.py b/nervtn_server/apps/queue/models/__init__.py similarity index 100% rename from nervtn/server/apps/queue/models/__init__.py rename to nervtn_server/apps/queue/models/__init__.py diff --git a/nervtn/server/apps/queue/tests.py b/nervtn_server/apps/queue/tests.py similarity index 100% rename from nervtn/server/apps/queue/tests.py rename to nervtn_server/apps/queue/tests.py diff --git a/nervtn/server/apps/queue/views.py b/nervtn_server/apps/queue/views.py similarity index 100% rename from nervtn/server/apps/queue/views.py rename to nervtn_server/apps/queue/views.py diff --git a/nervtn/server/apps/restoration/README.rst b/nervtn_server/apps/restoration/README.rst similarity index 100% rename from nervtn/server/apps/restoration/README.rst rename to nervtn_server/apps/restoration/README.rst diff --git a/nervtn/server/apps/queue/__init__.py b/nervtn_server/apps/restoration/__init__.py similarity index 100% rename from nervtn/server/apps/queue/__init__.py rename to nervtn_server/apps/restoration/__init__.py diff --git a/nervtn/server/apps/restoration/admin.py b/nervtn_server/apps/restoration/admin.py similarity index 100% rename from nervtn/server/apps/restoration/admin.py rename to nervtn_server/apps/restoration/admin.py diff --git a/nervtn/server/apps/restoration/apps.py b/nervtn_server/apps/restoration/apps.py similarity index 100% rename from nervtn/server/apps/restoration/apps.py rename to nervtn_server/apps/restoration/apps.py diff --git a/nervtn/server/apps/risk/migrations/__init__.py b/nervtn_server/apps/restoration/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/risk/migrations/__init__.py rename to nervtn_server/apps/restoration/migrations/__init__.py diff --git a/nervtn/server/apps/restoration/models/__init__.py b/nervtn_server/apps/restoration/models/__init__.py similarity index 100% rename from nervtn/server/apps/restoration/models/__init__.py rename to nervtn_server/apps/restoration/models/__init__.py diff --git a/nervtn/server/apps/restoration/tests.py b/nervtn_server/apps/restoration/tests.py similarity index 100% rename from nervtn/server/apps/restoration/tests.py rename to nervtn_server/apps/restoration/tests.py diff --git a/nervtn/server/apps/restoration/views.py b/nervtn_server/apps/restoration/views.py similarity index 100% rename from nervtn/server/apps/restoration/views.py rename to nervtn_server/apps/restoration/views.py diff --git a/nervtn/server/apps/risk/README.rst b/nervtn_server/apps/risk/README.rst similarity index 100% rename from nervtn/server/apps/risk/README.rst rename to nervtn_server/apps/risk/README.rst diff --git a/nervtn/server/apps/restoration/__init__.py b/nervtn_server/apps/risk/__init__.py similarity index 100% rename from nervtn/server/apps/restoration/__init__.py rename to nervtn_server/apps/risk/__init__.py diff --git a/nervtn/server/apps/risk/admin.py b/nervtn_server/apps/risk/admin.py similarity index 100% rename from nervtn/server/apps/risk/admin.py rename to nervtn_server/apps/risk/admin.py diff --git a/nervtn/server/apps/risk/apps.py b/nervtn_server/apps/risk/apps.py similarity index 100% rename from nervtn/server/apps/risk/apps.py rename to nervtn_server/apps/risk/apps.py diff --git a/nervtn/server/apps/security/migrations/__init__.py b/nervtn_server/apps/risk/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/security/migrations/__init__.py rename to nervtn_server/apps/risk/migrations/__init__.py diff --git a/nervtn/server/apps/risk/models/__init__.py b/nervtn_server/apps/risk/models/__init__.py similarity index 100% rename from nervtn/server/apps/risk/models/__init__.py rename to nervtn_server/apps/risk/models/__init__.py diff --git a/nervtn/server/apps/risk/tests.py b/nervtn_server/apps/risk/tests.py similarity index 100% rename from nervtn/server/apps/risk/tests.py rename to nervtn_server/apps/risk/tests.py diff --git a/nervtn/server/apps/risk/views.py b/nervtn_server/apps/risk/views.py similarity index 100% rename from nervtn/server/apps/risk/views.py rename to nervtn_server/apps/risk/views.py diff --git a/nervtn/server/apps/security/README.rst b/nervtn_server/apps/security/README.rst similarity index 100% rename from nervtn/server/apps/security/README.rst rename to nervtn_server/apps/security/README.rst diff --git a/nervtn/server/apps/risk/__init__.py b/nervtn_server/apps/security/__init__.py similarity index 100% rename from nervtn/server/apps/risk/__init__.py rename to nervtn_server/apps/security/__init__.py diff --git a/nervtn/server/apps/security/admin.py b/nervtn_server/apps/security/admin.py similarity index 100% rename from nervtn/server/apps/security/admin.py rename to nervtn_server/apps/security/admin.py diff --git a/nervtn/server/apps/security/apps.py b/nervtn_server/apps/security/apps.py similarity index 100% rename from nervtn/server/apps/security/apps.py rename to nervtn_server/apps/security/apps.py diff --git a/nervtn/server/apps/shop/migrations/__init__.py b/nervtn_server/apps/security/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/shop/migrations/__init__.py rename to nervtn_server/apps/security/migrations/__init__.py diff --git a/nervtn/server/apps/security/models/__init__.py b/nervtn_server/apps/security/models/__init__.py similarity index 100% rename from nervtn/server/apps/security/models/__init__.py rename to nervtn_server/apps/security/models/__init__.py diff --git a/nervtn/server/apps/security/tests.py b/nervtn_server/apps/security/tests.py similarity index 100% rename from nervtn/server/apps/security/tests.py rename to nervtn_server/apps/security/tests.py diff --git a/nervtn/server/apps/security/views.py b/nervtn_server/apps/security/views.py similarity index 100% rename from nervtn/server/apps/security/views.py rename to nervtn_server/apps/security/views.py diff --git a/nervtn/server/apps/shop/README.rst b/nervtn_server/apps/shop/README.rst similarity index 100% rename from nervtn/server/apps/shop/README.rst rename to nervtn_server/apps/shop/README.rst diff --git a/nervtn/server/apps/security/__init__.py b/nervtn_server/apps/shop/__init__.py similarity index 100% rename from nervtn/server/apps/security/__init__.py rename to nervtn_server/apps/shop/__init__.py diff --git a/nervtn/server/apps/shop/admin.py b/nervtn_server/apps/shop/admin.py similarity index 100% rename from nervtn/server/apps/shop/admin.py rename to nervtn_server/apps/shop/admin.py diff --git a/nervtn/server/apps/shop/apps.py b/nervtn_server/apps/shop/apps.py similarity index 100% rename from nervtn/server/apps/shop/apps.py rename to nervtn_server/apps/shop/apps.py diff --git a/nervtn/server/apps/sipd/migrations/__init__.py b/nervtn_server/apps/shop/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/sipd/migrations/__init__.py rename to nervtn_server/apps/shop/migrations/__init__.py diff --git a/nervtn/server/apps/shop/models/__init__.py b/nervtn_server/apps/shop/models/__init__.py similarity index 100% rename from nervtn/server/apps/shop/models/__init__.py rename to nervtn_server/apps/shop/models/__init__.py diff --git a/nervtn/server/apps/shop/tests.py b/nervtn_server/apps/shop/tests.py similarity index 100% rename from nervtn/server/apps/shop/tests.py rename to nervtn_server/apps/shop/tests.py diff --git a/nervtn/server/apps/shop/views.py b/nervtn_server/apps/shop/views.py similarity index 100% rename from nervtn/server/apps/shop/views.py rename to nervtn_server/apps/shop/views.py diff --git a/nervtn/server/apps/sipd/README.rst b/nervtn_server/apps/sipd/README.rst similarity index 100% rename from nervtn/server/apps/sipd/README.rst rename to nervtn_server/apps/sipd/README.rst diff --git a/nervtn/server/apps/shop/__init__.py b/nervtn_server/apps/sipd/__init__.py similarity index 100% rename from nervtn/server/apps/shop/__init__.py rename to nervtn_server/apps/sipd/__init__.py diff --git a/nervtn/server/apps/sipd/admin.py b/nervtn_server/apps/sipd/admin.py similarity index 100% rename from nervtn/server/apps/sipd/admin.py rename to nervtn_server/apps/sipd/admin.py diff --git a/nervtn/server/apps/sipd/apps.py b/nervtn_server/apps/sipd/apps.py similarity index 100% rename from nervtn/server/apps/sipd/apps.py rename to nervtn_server/apps/sipd/apps.py diff --git a/nervtn/server/apps/smtpd/migrations/__init__.py b/nervtn_server/apps/sipd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/smtpd/migrations/__init__.py rename to nervtn_server/apps/sipd/migrations/__init__.py diff --git a/nervtn/server/apps/sipd/models/__init__.py b/nervtn_server/apps/sipd/models/__init__.py similarity index 100% rename from nervtn/server/apps/sipd/models/__init__.py rename to nervtn_server/apps/sipd/models/__init__.py diff --git a/nervtn/server/apps/sipd/tests.py b/nervtn_server/apps/sipd/tests.py similarity index 100% rename from nervtn/server/apps/sipd/tests.py rename to nervtn_server/apps/sipd/tests.py diff --git a/nervtn/server/apps/sipd/views.py b/nervtn_server/apps/sipd/views.py similarity index 100% rename from nervtn/server/apps/sipd/views.py rename to nervtn_server/apps/sipd/views.py diff --git a/nervtn/server/apps/smtpd/README.rst b/nervtn_server/apps/smtpd/README.rst similarity index 100% rename from nervtn/server/apps/smtpd/README.rst rename to nervtn_server/apps/smtpd/README.rst diff --git a/nervtn/server/apps/sipd/__init__.py b/nervtn_server/apps/smtpd/__init__.py similarity index 100% rename from nervtn/server/apps/sipd/__init__.py rename to nervtn_server/apps/smtpd/__init__.py diff --git a/nervtn/server/apps/smtpd/admin.py b/nervtn_server/apps/smtpd/admin.py similarity index 100% rename from nervtn/server/apps/smtpd/admin.py rename to nervtn_server/apps/smtpd/admin.py diff --git a/nervtn/server/apps/smtpd/apps.py b/nervtn_server/apps/smtpd/apps.py similarity index 100% rename from nervtn/server/apps/smtpd/apps.py rename to nervtn_server/apps/smtpd/apps.py diff --git a/nervtn/server/apps/sshd/migrations/__init__.py b/nervtn_server/apps/smtpd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/sshd/migrations/__init__.py rename to nervtn_server/apps/smtpd/migrations/__init__.py diff --git a/nervtn/server/apps/smtpd/models/__init__.py b/nervtn_server/apps/smtpd/models/__init__.py similarity index 100% rename from nervtn/server/apps/smtpd/models/__init__.py rename to nervtn_server/apps/smtpd/models/__init__.py diff --git a/nervtn/server/apps/smtpd/tests.py b/nervtn_server/apps/smtpd/tests.py similarity index 100% rename from nervtn/server/apps/smtpd/tests.py rename to nervtn_server/apps/smtpd/tests.py diff --git a/nervtn/server/apps/smtpd/views.py b/nervtn_server/apps/smtpd/views.py similarity index 100% rename from nervtn/server/apps/smtpd/views.py rename to nervtn_server/apps/smtpd/views.py diff --git a/nervtn/server/apps/sshd/README.rst b/nervtn_server/apps/sshd/README.rst similarity index 100% rename from nervtn/server/apps/sshd/README.rst rename to nervtn_server/apps/sshd/README.rst diff --git a/nervtn/server/apps/smtpd/__init__.py b/nervtn_server/apps/sshd/__init__.py similarity index 100% rename from nervtn/server/apps/smtpd/__init__.py rename to nervtn_server/apps/sshd/__init__.py diff --git a/nervtn/server/apps/sshd/admin.py b/nervtn_server/apps/sshd/admin.py similarity index 100% rename from nervtn/server/apps/sshd/admin.py rename to nervtn_server/apps/sshd/admin.py diff --git a/nervtn/server/apps/sshd/apps.py b/nervtn_server/apps/sshd/apps.py similarity index 100% rename from nervtn/server/apps/sshd/apps.py rename to nervtn_server/apps/sshd/apps.py diff --git a/nervtn/server/apps/stock/migrations/__init__.py b/nervtn_server/apps/sshd/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/stock/migrations/__init__.py rename to nervtn_server/apps/sshd/migrations/__init__.py diff --git a/nervtn/server/apps/sshd/models/__init__.py b/nervtn_server/apps/sshd/models/__init__.py similarity index 100% rename from nervtn/server/apps/sshd/models/__init__.py rename to nervtn_server/apps/sshd/models/__init__.py diff --git a/nervtn/server/apps/sshd/tests.py b/nervtn_server/apps/sshd/tests.py similarity index 100% rename from nervtn/server/apps/sshd/tests.py rename to nervtn_server/apps/sshd/tests.py diff --git a/nervtn/server/apps/sshd/views.py b/nervtn_server/apps/sshd/views.py similarity index 100% rename from nervtn/server/apps/sshd/views.py rename to nervtn_server/apps/sshd/views.py diff --git a/nervtn/server/apps/stock/README.rst b/nervtn_server/apps/stock/README.rst similarity index 100% rename from nervtn/server/apps/stock/README.rst rename to nervtn_server/apps/stock/README.rst diff --git a/nervtn/server/apps/sshd/__init__.py b/nervtn_server/apps/stock/__init__.py similarity index 100% rename from nervtn/server/apps/sshd/__init__.py rename to nervtn_server/apps/stock/__init__.py diff --git a/nervtn/server/apps/stock/admin.py b/nervtn_server/apps/stock/admin.py similarity index 100% rename from nervtn/server/apps/stock/admin.py rename to nervtn_server/apps/stock/admin.py diff --git a/nervtn/server/apps/stock/apps.py b/nervtn_server/apps/stock/apps.py similarity index 100% rename from nervtn/server/apps/stock/apps.py rename to nervtn_server/apps/stock/apps.py diff --git a/nervtn/server/apps/storage/migrations/__init__.py b/nervtn_server/apps/stock/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/storage/migrations/__init__.py rename to nervtn_server/apps/stock/migrations/__init__.py diff --git a/nervtn/server/apps/stock/models/__init__.py b/nervtn_server/apps/stock/models/__init__.py similarity index 100% rename from nervtn/server/apps/stock/models/__init__.py rename to nervtn_server/apps/stock/models/__init__.py diff --git a/nervtn/server/apps/stock/tests.py b/nervtn_server/apps/stock/tests.py similarity index 100% rename from nervtn/server/apps/stock/tests.py rename to nervtn_server/apps/stock/tests.py diff --git a/nervtn/server/apps/stock/views.py b/nervtn_server/apps/stock/views.py similarity index 100% rename from nervtn/server/apps/stock/views.py rename to nervtn_server/apps/stock/views.py diff --git a/nervtn/server/apps/storage/README.rst b/nervtn_server/apps/storage/README.rst similarity index 100% rename from nervtn/server/apps/storage/README.rst rename to nervtn_server/apps/storage/README.rst diff --git a/nervtn/server/apps/stock/__init__.py b/nervtn_server/apps/storage/__init__.py similarity index 100% rename from nervtn/server/apps/stock/__init__.py rename to nervtn_server/apps/storage/__init__.py diff --git a/nervtn/server/apps/storage/admin.py b/nervtn_server/apps/storage/admin.py similarity index 100% rename from nervtn/server/apps/storage/admin.py rename to nervtn_server/apps/storage/admin.py diff --git a/nervtn/server/apps/storage/apps.py b/nervtn_server/apps/storage/apps.py similarity index 100% rename from nervtn/server/apps/storage/apps.py rename to nervtn_server/apps/storage/apps.py diff --git a/nervtn/server/apps/submission/migrations/__init__.py b/nervtn_server/apps/storage/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/submission/migrations/__init__.py rename to nervtn_server/apps/storage/migrations/__init__.py diff --git a/nervtn/server/apps/storage/models/__init__.py b/nervtn_server/apps/storage/models/__init__.py similarity index 100% rename from nervtn/server/apps/storage/models/__init__.py rename to nervtn_server/apps/storage/models/__init__.py diff --git a/nervtn/server/apps/storage/tests.py b/nervtn_server/apps/storage/tests.py similarity index 100% rename from nervtn/server/apps/storage/tests.py rename to nervtn_server/apps/storage/tests.py diff --git a/nervtn/server/apps/storage/views.py b/nervtn_server/apps/storage/views.py similarity index 100% rename from nervtn/server/apps/storage/views.py rename to nervtn_server/apps/storage/views.py diff --git a/nervtn/server/apps/submission/README.rst b/nervtn_server/apps/submission/README.rst similarity index 100% rename from nervtn/server/apps/submission/README.rst rename to nervtn_server/apps/submission/README.rst diff --git a/nervtn/server/apps/storage/__init__.py b/nervtn_server/apps/submission/__init__.py similarity index 100% rename from nervtn/server/apps/storage/__init__.py rename to nervtn_server/apps/submission/__init__.py diff --git a/nervtn/server/apps/submission/admin.py b/nervtn_server/apps/submission/admin.py similarity index 100% rename from nervtn/server/apps/submission/admin.py rename to nervtn_server/apps/submission/admin.py diff --git a/nervtn/server/apps/submission/apps.py b/nervtn_server/apps/submission/apps.py similarity index 100% rename from nervtn/server/apps/submission/apps.py rename to nervtn_server/apps/submission/apps.py diff --git a/nervtn/server/apps/survey/migrations/__init__.py b/nervtn_server/apps/submission/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/survey/migrations/__init__.py rename to nervtn_server/apps/submission/migrations/__init__.py diff --git a/nervtn/server/apps/submission/models/__init__.py b/nervtn_server/apps/submission/models/__init__.py similarity index 100% rename from nervtn/server/apps/submission/models/__init__.py rename to nervtn_server/apps/submission/models/__init__.py diff --git a/nervtn/server/apps/submission/tests.py b/nervtn_server/apps/submission/tests.py similarity index 100% rename from nervtn/server/apps/submission/tests.py rename to nervtn_server/apps/submission/tests.py diff --git a/nervtn/server/apps/submission/views.py b/nervtn_server/apps/submission/views.py similarity index 100% rename from nervtn/server/apps/submission/views.py rename to nervtn_server/apps/submission/views.py diff --git a/nervtn/server/apps/survey/README.rst b/nervtn_server/apps/survey/README.rst similarity index 100% rename from nervtn/server/apps/survey/README.rst rename to nervtn_server/apps/survey/README.rst diff --git a/nervtn/server/apps/submission/__init__.py b/nervtn_server/apps/survey/__init__.py similarity index 100% rename from nervtn/server/apps/submission/__init__.py rename to nervtn_server/apps/survey/__init__.py diff --git a/nervtn/server/apps/survey/admin.py b/nervtn_server/apps/survey/admin.py similarity index 100% rename from nervtn/server/apps/survey/admin.py rename to nervtn_server/apps/survey/admin.py diff --git a/nervtn/server/apps/survey/apps.py b/nervtn_server/apps/survey/apps.py similarity index 100% rename from nervtn/server/apps/survey/apps.py rename to nervtn_server/apps/survey/apps.py diff --git a/nervtn/server/apps/sync/migrations/__init__.py b/nervtn_server/apps/survey/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/sync/migrations/__init__.py rename to nervtn_server/apps/survey/migrations/__init__.py diff --git a/nervtn/server/apps/survey/models/__init__.py b/nervtn_server/apps/survey/models/__init__.py similarity index 100% rename from nervtn/server/apps/survey/models/__init__.py rename to nervtn_server/apps/survey/models/__init__.py diff --git a/nervtn/server/apps/survey/tests.py b/nervtn_server/apps/survey/tests.py similarity index 100% rename from nervtn/server/apps/survey/tests.py rename to nervtn_server/apps/survey/tests.py diff --git a/nervtn/server/apps/survey/views.py b/nervtn_server/apps/survey/views.py similarity index 100% rename from nervtn/server/apps/survey/views.py rename to nervtn_server/apps/survey/views.py diff --git a/nervtn/server/apps/sync/README.rst b/nervtn_server/apps/sync/README.rst similarity index 100% rename from nervtn/server/apps/sync/README.rst rename to nervtn_server/apps/sync/README.rst diff --git a/nervtn/server/apps/survey/__init__.py b/nervtn_server/apps/sync/__init__.py similarity index 100% rename from nervtn/server/apps/survey/__init__.py rename to nervtn_server/apps/sync/__init__.py diff --git a/nervtn/server/apps/sync/admin.py b/nervtn_server/apps/sync/admin.py similarity index 100% rename from nervtn/server/apps/sync/admin.py rename to nervtn_server/apps/sync/admin.py diff --git a/nervtn/server/apps/sync/apps.py b/nervtn_server/apps/sync/apps.py similarity index 100% rename from nervtn/server/apps/sync/apps.py rename to nervtn_server/apps/sync/apps.py diff --git a/nervtn/server/apps/system_health/migrations/__init__.py b/nervtn_server/apps/sync/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/system_health/migrations/__init__.py rename to nervtn_server/apps/sync/migrations/__init__.py diff --git a/nervtn/server/apps/sync/models/__init__.py b/nervtn_server/apps/sync/models/__init__.py similarity index 100% rename from nervtn/server/apps/sync/models/__init__.py rename to nervtn_server/apps/sync/models/__init__.py diff --git a/nervtn/server/apps/sync/tests.py b/nervtn_server/apps/sync/tests.py similarity index 100% rename from nervtn/server/apps/sync/tests.py rename to nervtn_server/apps/sync/tests.py diff --git a/nervtn/server/apps/sync/views.py b/nervtn_server/apps/sync/views.py similarity index 100% rename from nervtn/server/apps/sync/views.py rename to nervtn_server/apps/sync/views.py diff --git a/nervtn/server/apps/system_health/README.rst b/nervtn_server/apps/system_health/README.rst similarity index 100% rename from nervtn/server/apps/system_health/README.rst rename to nervtn_server/apps/system_health/README.rst diff --git a/nervtn/server/apps/sync/__init__.py b/nervtn_server/apps/system_health/__init__.py similarity index 100% rename from nervtn/server/apps/sync/__init__.py rename to nervtn_server/apps/system_health/__init__.py diff --git a/nervtn/server/apps/system_health/admin.py b/nervtn_server/apps/system_health/admin.py similarity index 100% rename from nervtn/server/apps/system_health/admin.py rename to nervtn_server/apps/system_health/admin.py diff --git a/nervtn/server/apps/system_health/apps.py b/nervtn_server/apps/system_health/apps.py similarity index 100% rename from nervtn/server/apps/system_health/apps.py rename to nervtn_server/apps/system_health/apps.py diff --git a/nervtn/server/apps/task/migrations/__init__.py b/nervtn_server/apps/system_health/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/task/migrations/__init__.py rename to nervtn_server/apps/system_health/migrations/__init__.py diff --git a/nervtn/server/apps/system_health/models/__init__.py b/nervtn_server/apps/system_health/models/__init__.py similarity index 100% rename from nervtn/server/apps/system_health/models/__init__.py rename to nervtn_server/apps/system_health/models/__init__.py diff --git a/nervtn/server/apps/system_health/tests.py b/nervtn_server/apps/system_health/tests.py similarity index 100% rename from nervtn/server/apps/system_health/tests.py rename to nervtn_server/apps/system_health/tests.py diff --git a/nervtn/server/apps/system_health/views.py b/nervtn_server/apps/system_health/views.py similarity index 100% rename from nervtn/server/apps/system_health/views.py rename to nervtn_server/apps/system_health/views.py diff --git a/nervtn/server/apps/task/README.rst b/nervtn_server/apps/task/README.rst similarity index 100% rename from nervtn/server/apps/task/README.rst rename to nervtn_server/apps/task/README.rst diff --git a/nervtn/server/apps/system_health/__init__.py b/nervtn_server/apps/task/__init__.py similarity index 100% rename from nervtn/server/apps/system_health/__init__.py rename to nervtn_server/apps/task/__init__.py diff --git a/nervtn/server/apps/task/admin.py b/nervtn_server/apps/task/admin.py similarity index 100% rename from nervtn/server/apps/task/admin.py rename to nervtn_server/apps/task/admin.py diff --git a/nervtn/server/apps/task/apps.py b/nervtn_server/apps/task/apps.py similarity index 100% rename from nervtn/server/apps/task/apps.py rename to nervtn_server/apps/task/apps.py diff --git a/nervtn/server/apps/ticket/migrations/__init__.py b/nervtn_server/apps/task/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/ticket/migrations/__init__.py rename to nervtn_server/apps/task/migrations/__init__.py diff --git a/nervtn/server/apps/task/models/__init__.py b/nervtn_server/apps/task/models/__init__.py similarity index 100% rename from nervtn/server/apps/task/models/__init__.py rename to nervtn_server/apps/task/models/__init__.py diff --git a/nervtn/server/apps/task/tests.py b/nervtn_server/apps/task/tests.py similarity index 100% rename from nervtn/server/apps/task/tests.py rename to nervtn_server/apps/task/tests.py diff --git a/nervtn/server/apps/task/views.py b/nervtn_server/apps/task/views.py similarity index 100% rename from nervtn/server/apps/task/views.py rename to nervtn_server/apps/task/views.py diff --git a/nervtn/server/apps/ticket/README.rst b/nervtn_server/apps/ticket/README.rst similarity index 100% rename from nervtn/server/apps/ticket/README.rst rename to nervtn_server/apps/ticket/README.rst diff --git a/nervtn/server/apps/task/__init__.py b/nervtn_server/apps/ticket/__init__.py similarity index 100% rename from nervtn/server/apps/task/__init__.py rename to nervtn_server/apps/ticket/__init__.py diff --git a/nervtn/server/apps/ticket/admin.py b/nervtn_server/apps/ticket/admin.py similarity index 100% rename from nervtn/server/apps/ticket/admin.py rename to nervtn_server/apps/ticket/admin.py diff --git a/nervtn/server/apps/ticket/apps.py b/nervtn_server/apps/ticket/apps.py similarity index 100% rename from nervtn/server/apps/ticket/apps.py rename to nervtn_server/apps/ticket/apps.py diff --git a/nervtn/server/apps/translation/migrations/__init__.py b/nervtn_server/apps/ticket/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/translation/migrations/__init__.py rename to nervtn_server/apps/ticket/migrations/__init__.py diff --git a/nervtn/server/apps/ticket/models/__init__.py b/nervtn_server/apps/ticket/models/__init__.py similarity index 100% rename from nervtn/server/apps/ticket/models/__init__.py rename to nervtn_server/apps/ticket/models/__init__.py diff --git a/nervtn/server/apps/ticket/tests.py b/nervtn_server/apps/ticket/tests.py similarity index 100% rename from nervtn/server/apps/ticket/tests.py rename to nervtn_server/apps/ticket/tests.py diff --git a/nervtn/server/apps/ticket/views.py b/nervtn_server/apps/ticket/views.py similarity index 100% rename from nervtn/server/apps/ticket/views.py rename to nervtn_server/apps/ticket/views.py diff --git a/nervtn/server/apps/translation/README.rst b/nervtn_server/apps/translation/README.rst similarity index 100% rename from nervtn/server/apps/translation/README.rst rename to nervtn_server/apps/translation/README.rst diff --git a/nervtn/server/apps/ticket/__init__.py b/nervtn_server/apps/translation/__init__.py similarity index 100% rename from nervtn/server/apps/ticket/__init__.py rename to nervtn_server/apps/translation/__init__.py diff --git a/nervtn/server/apps/translation/admin.py b/nervtn_server/apps/translation/admin.py similarity index 100% rename from nervtn/server/apps/translation/admin.py rename to nervtn_server/apps/translation/admin.py diff --git a/nervtn/server/apps/translation/apps.py b/nervtn_server/apps/translation/apps.py similarity index 100% rename from nervtn/server/apps/translation/apps.py rename to nervtn_server/apps/translation/apps.py diff --git a/nervtn/server/apps/website/migrations/__init__.py b/nervtn_server/apps/translation/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/website/migrations/__init__.py rename to nervtn_server/apps/translation/migrations/__init__.py diff --git a/nervtn/server/apps/translation/models/__init__.py b/nervtn_server/apps/translation/models/__init__.py similarity index 100% rename from nervtn/server/apps/translation/models/__init__.py rename to nervtn_server/apps/translation/models/__init__.py diff --git a/nervtn/server/apps/translation/tests.py b/nervtn_server/apps/translation/tests.py similarity index 100% rename from nervtn/server/apps/translation/tests.py rename to nervtn_server/apps/translation/tests.py diff --git a/nervtn/server/apps/translation/views.py b/nervtn_server/apps/translation/views.py similarity index 100% rename from nervtn/server/apps/translation/views.py rename to nervtn_server/apps/translation/views.py diff --git a/nervtn/server/apps/website/README.rst b/nervtn_server/apps/website/README.rst similarity index 100% rename from nervtn/server/apps/website/README.rst rename to nervtn_server/apps/website/README.rst diff --git a/nervtn/server/apps/translation/__init__.py b/nervtn_server/apps/website/__init__.py similarity index 100% rename from nervtn/server/apps/translation/__init__.py rename to nervtn_server/apps/website/__init__.py diff --git a/nervtn/server/apps/website/admin.py b/nervtn_server/apps/website/admin.py similarity index 100% rename from nervtn/server/apps/website/admin.py rename to nervtn_server/apps/website/admin.py diff --git a/nervtn/server/apps/website/apps.py b/nervtn_server/apps/website/apps.py similarity index 100% rename from nervtn/server/apps/website/apps.py rename to nervtn_server/apps/website/apps.py diff --git a/nervtn/server/apps/xmppd/migrations/__init__.py b/nervtn_server/apps/website/migrations/__init__.py similarity index 100% rename from nervtn/server/apps/xmppd/migrations/__init__.py rename to nervtn_server/apps/website/migrations/__init__.py diff --git a/nervtn/server/apps/website/models/__init__.py b/nervtn_server/apps/website/models/__init__.py similarity index 100% rename from nervtn/server/apps/website/models/__init__.py rename to nervtn_server/apps/website/models/__init__.py diff --git a/nervtn/server/apps/website/tests.py b/nervtn_server/apps/website/tests.py similarity index 100% rename from nervtn/server/apps/website/tests.py rename to nervtn_server/apps/website/tests.py diff --git a/nervtn/server/apps/website/views.py b/nervtn_server/apps/website/views.py similarity index 100% rename from nervtn/server/apps/website/views.py rename to nervtn_server/apps/website/views.py diff --git a/nervtn/server/apps/xmppd/README.rst b/nervtn_server/apps/xmppd/README.rst similarity index 100% rename from nervtn/server/apps/xmppd/README.rst rename to nervtn_server/apps/xmppd/README.rst diff --git a/nervtn/server/apps/website/__init__.py b/nervtn_server/apps/xmppd/__init__.py similarity index 100% rename from nervtn/server/apps/website/__init__.py rename to nervtn_server/apps/xmppd/__init__.py diff --git a/nervtn/server/apps/xmppd/admin.py b/nervtn_server/apps/xmppd/admin.py similarity index 100% rename from nervtn/server/apps/xmppd/admin.py rename to nervtn_server/apps/xmppd/admin.py diff --git a/nervtn/server/apps/xmppd/apps.py b/nervtn_server/apps/xmppd/apps.py similarity index 100% rename from nervtn/server/apps/xmppd/apps.py rename to nervtn_server/apps/xmppd/apps.py diff --git a/nervtn/server/main/__init__.py b/nervtn_server/apps/xmppd/migrations/__init__.py similarity index 100% rename from nervtn/server/main/__init__.py rename to nervtn_server/apps/xmppd/migrations/__init__.py diff --git a/nervtn/server/apps/xmppd/models/__init__.py b/nervtn_server/apps/xmppd/models/__init__.py similarity index 100% rename from nervtn/server/apps/xmppd/models/__init__.py rename to nervtn_server/apps/xmppd/models/__init__.py diff --git a/nervtn/server/apps/xmppd/tests.py b/nervtn_server/apps/xmppd/tests.py similarity index 100% rename from nervtn/server/apps/xmppd/tests.py rename to nervtn_server/apps/xmppd/tests.py diff --git a/nervtn/server/apps/xmppd/views.py b/nervtn_server/apps/xmppd/views.py similarity index 100% rename from nervtn/server/apps/xmppd/views.py rename to nervtn_server/apps/xmppd/views.py diff --git a/nervtn_server/main/README.rst b/nervtn_server/main/README.rst new file mode 100644 index 0000000..8f41803 --- /dev/null +++ b/nervtn_server/main/README.rst @@ -0,0 +1,4 @@ +Nerv Tales Network Main Server +============================== + +Main django instance. diff --git a/nervtn/server/security/__init__.py b/nervtn_server/main/__init__.py similarity index 100% rename from nervtn/server/security/__init__.py rename to nervtn_server/main/__init__.py diff --git a/nervtn/server/main/asgi.py b/nervtn_server/main/asgi.py similarity index 100% rename from nervtn/server/main/asgi.py rename to nervtn_server/main/asgi.py diff --git a/nervtn/server/main/manage.py b/nervtn_server/main/manage.py similarity index 100% rename from nervtn/server/main/manage.py rename to nervtn_server/main/manage.py diff --git a/nervtn/server/main/settings.py b/nervtn_server/main/settings.py similarity index 100% rename from nervtn/server/main/settings.py rename to nervtn_server/main/settings.py diff --git a/nervtn/server/main/urls.py b/nervtn_server/main/urls.py similarity index 100% rename from nervtn/server/main/urls.py rename to nervtn_server/main/urls.py diff --git a/nervtn/server/main/wsgi.py b/nervtn_server/main/wsgi.py similarity index 100% rename from nervtn/server/main/wsgi.py rename to nervtn_server/main/wsgi.py diff --git a/nervtn_server/security/README.rst b/nervtn_server/security/README.rst new file mode 100644 index 0000000..ef093de --- /dev/null +++ b/nervtn_server/security/README.rst @@ -0,0 +1,4 @@ +Nerv Tales Network Security Server +================================== + +Django instance for security server. diff --git a/nervtn/tests/__init__.py b/nervtn_server/security/__init__.py similarity index 100% rename from nervtn/tests/__init__.py rename to nervtn_server/security/__init__.py diff --git a/nervtn/server/security/asgi.py b/nervtn_server/security/asgi.py similarity index 100% rename from nervtn/server/security/asgi.py rename to nervtn_server/security/asgi.py diff --git a/nervtn/server/security/manage.py b/nervtn_server/security/manage.py similarity index 100% rename from nervtn/server/security/manage.py rename to nervtn_server/security/manage.py diff --git a/nervtn/server/security/settings.py b/nervtn_server/security/settings.py similarity index 100% rename from nervtn/server/security/settings.py rename to nervtn_server/security/settings.py diff --git a/nervtn/server/security/urls.py b/nervtn_server/security/urls.py similarity index 100% rename from nervtn/server/security/urls.py rename to nervtn_server/security/urls.py diff --git a/nervtn/server/security/wsgi.py b/nervtn_server/security/wsgi.py similarity index 100% rename from nervtn/server/security/wsgi.py rename to nervtn_server/security/wsgi.py diff --git a/pyprojects/client.qt.toml b/pyproject.toml similarity index 95% rename from pyprojects/client.qt.toml rename to pyproject.toml index e6b76cc..351a050 100644 --- a/pyprojects/client.qt.toml +++ b/pyproject.toml @@ -3,12 +3,13 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-client-qt" +name = "nervtn_server" version = "0.0.1" requires-python = ">=3.8" dependencies = [ "Sphinx>=3.0.0", - "Django>=3.1" + "Django>3", + "nervtn-common==0.0.1" ] license = {text = "EUPL-1.2"} authors = [ @@ -21,7 +22,7 @@ maintainers = [ {name = "kujiu"}, {name = "ptitgnu"} ] -description = "NervTN Qt client" +description = "Nerv Tales Network server" readme = {file = "README.rst", content-type = "text/x-rst"} keywords = ["management", "accounting", "creators", "writing", "accessibility", "security"] @@ -126,11 +127,11 @@ classifiers = [ [project.urls] homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" +repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn-server" documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" +issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn-server/issues" editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" +changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn-server/raw/branch/main/CHANGES.rst" [project.optional-dependencies] tests = [ @@ -167,15 +168,6 @@ doc = [ [project.entry-points."nervtn.server.apps"] -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - [tool.pytest.ini_options] minversion = "6.0" addopts = "-ra -q" diff --git a/pyprojects/client.common.toml b/pyprojects/client.common.toml deleted file mode 100644 index 114902e..0000000 --- a/pyprojects/client.common.toml +++ /dev/null @@ -1,204 +0,0 @@ -[build-system] -requires = ["flit_core>=3.2"] -build-backend = "flit_core.buildapi" - -[project] -name = "nervtn-client-common" -version = "0.0.1" -requires-python = ">=3.8" -dependencies = [ - "Sphinx>=3.0.0", - "Django>=3.1" -] -license = {text = "EUPL-1.2"} -authors = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -maintainers = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -description = "NervTN - Common library for clients" -readme = {file = "README.rst", content-type = "text/x-rst"} -keywords = ["management", "accounting", "creators", "writing", -"accessibility", "security"] -classifiers = [ - "Framework :: Sphinx", - "Framework :: Sphinx :: Extension", - "Framework :: Django", - "Framework :: Django :: 3.1", - "Framework :: Django :: 3.2", - "Development Status :: 1 - Planning", - "Environment :: Console", - "Environment :: Console :: Curses", - "Environment :: Web Environment", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: Customer Service", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Financial and Insurance Industry", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Information Technology", - "Intended Audience :: Manufacturing", - "Intended Audience :: Other Audience", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: JavaScript", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Operating System :: Android", - "Operating System :: OS Independent", - "Topic :: Adaptive Technologies", - "Topic :: Artistic Software", - "Topic :: Communications", - "Topic :: Communications :: BBS", - "Topic :: Communications :: Chat", - "Topic :: Communications :: Conferencing", - "Topic :: Communications :: Email", - "Topic :: Communications :: Email :: Address Book", - "Topic :: Communications :: Email :: Email Clients (MUA)", - "Topic :: Communications :: Email :: Filters", - "Topic :: Communications :: Email :: Mail Transport Agents", - "Topic :: Communications :: Email :: Mailing List Servers", - "Topic :: Communications :: Email :: Post-Office", - "Topic :: Communications :: Email :: Post-Office :: IMAP", - "Topic :: Communications :: File Sharing", - "Topic :: Communications :: Internet Phone", - "Topic :: Communications :: Telephony", - "Topic :: Documentation", - "Topic :: Documentation :: Sphinx", - "Topic :: Education", - "Topic :: Education :: Computer Aided Instruction (CAI)", - "Topic :: Education :: Testing", - "Topic :: Home Automation", - "Topic :: Internet :: File Transfer Protocol (FTP)", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Internet :: XMPP", - "Topic :: Multimedia", - "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", - "Topic :: Multimedia :: Sound/Audio :: Editors", - "Topic :: Multimedia :: Sound/Audio :: Speech", - "Topic :: Multimedia :: Sound/Audio :: Players", - "Topic :: Multimedia :: Video", - "Topic :: Multimedia :: Video :: Capture", - "Topic :: Multimedia :: Video :: Display", - "Topic :: Office/Business", - "Topic :: Office/Business :: Financial", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Point-Of-Sale", - "Topic :: Office/Business :: Financial :: Spreadsheet", - "Topic :: Office/Business :: Groupware", - "Topic :: Office/Business :: News/Diary", - "Topic :: Office/Business :: Office Suites", - "Topic :: Office/Business :: Scheduling", - "Topic :: Other/Nonlisted Topic", - "Topic :: Printing", - "Topic :: Scientific/Engineering", - "Topic :: Security", - "Topic :: Software Development", - "Topic :: Software Development :: Documentation", - "Topic :: Software Development :: Internationalization", - "Topic :: Software Development :: Quality Assurance", - "Topic :: Software Development :: Testing", - "Topic :: Software Development :: Version Control", - "Topic :: Software Development :: Version Control :: Git", - "Topic :: System :: Systems Administration", - "Topic :: System :: Systems Administration :: Authentication/Directory", - "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP", - "Topic :: Text Editors", - "Topic :: Text Editors :: Documentation", - "Topic :: Text Editors :: Text Processing", - "Topic :: Text Editors :: Word Processors", - "Topic :: Text Processing", - "Topic :: Text Processing :: Markup", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: reStructuredText" -] - -[project.urls] -homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" -documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" -editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" - -[project.optional-dependencies] -tests = [ - "tox", - "pytest", - "flake8", - "pylint", - "pytest-cov" -] -setup = [ - "pytest-runner", - "flake8", - "pylint", - "babel", - "flit", -] -doc = [ - "Sphinx", - "sphinx-nervproject-theme", - "sphinxcontrib-actdiag", - "sphinxcontrib-blockdiag", - "sphinxcontrib-nwdiag", - "sphinxcontrib-seqdiag", - "sphinxcontrib-bibtex", - "sphinxemoji", - "sphinx-galleria", - "sphinx-fasvg", - "sphinx-issues", - "sphinx-sitemap", - "sphinx-git" -] - -[project.scripts] - -[project.entry-points."nervtn.server.apps"] - -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - -[tool.pytest.ini_options] -minversion = "6.0" -addopts = "-ra -q" -testpaths = [ - "tests", -] - -[tool.babel.extract_messages] -mapping_file = "babel.cfg" -output_file = "locale/nervtn.pot" -keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"] -add_comments = "Translators:" - -[tool.babel.init_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.update_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.compile_catalog] -domain = "nervtn" -directory = "locale/" diff --git a/pyprojects/client.tui.toml b/pyprojects/client.tui.toml deleted file mode 100644 index 3b370e6..0000000 --- a/pyprojects/client.tui.toml +++ /dev/null @@ -1,204 +0,0 @@ -[build-system] -requires = ["flit_core>=3.2"] -build-backend = "flit_core.buildapi" - -[project] -name = "nervtn-client-tui" -version = "0.0.1" -requires-python = ">=3.8" -dependencies = [ - "Sphinx>=3.0.0", - "Django>=3.1" -] -license = {text = "EUPL-1.2"} -authors = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -maintainers = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -description = "NervTN TUI client" -readme = {file = "README.rst", content-type = "text/x-rst"} -keywords = ["management", "accounting", "creators", "writing", -"accessibility", "security"] -classifiers = [ - "Framework :: Sphinx", - "Framework :: Sphinx :: Extension", - "Framework :: Django", - "Framework :: Django :: 3.1", - "Framework :: Django :: 3.2", - "Development Status :: 1 - Planning", - "Environment :: Console", - "Environment :: Console :: Curses", - "Environment :: Web Environment", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: Customer Service", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Financial and Insurance Industry", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Information Technology", - "Intended Audience :: Manufacturing", - "Intended Audience :: Other Audience", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: JavaScript", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Operating System :: Android", - "Operating System :: OS Independent", - "Topic :: Adaptive Technologies", - "Topic :: Artistic Software", - "Topic :: Communications", - "Topic :: Communications :: BBS", - "Topic :: Communications :: Chat", - "Topic :: Communications :: Conferencing", - "Topic :: Communications :: Email", - "Topic :: Communications :: Email :: Address Book", - "Topic :: Communications :: Email :: Email Clients (MUA)", - "Topic :: Communications :: Email :: Filters", - "Topic :: Communications :: Email :: Mail Transport Agents", - "Topic :: Communications :: Email :: Mailing List Servers", - "Topic :: Communications :: Email :: Post-Office", - "Topic :: Communications :: Email :: Post-Office :: IMAP", - "Topic :: Communications :: File Sharing", - "Topic :: Communications :: Internet Phone", - "Topic :: Communications :: Telephony", - "Topic :: Documentation", - "Topic :: Documentation :: Sphinx", - "Topic :: Education", - "Topic :: Education :: Computer Aided Instruction (CAI)", - "Topic :: Education :: Testing", - "Topic :: Home Automation", - "Topic :: Internet :: File Transfer Protocol (FTP)", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Internet :: XMPP", - "Topic :: Multimedia", - "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", - "Topic :: Multimedia :: Sound/Audio :: Editors", - "Topic :: Multimedia :: Sound/Audio :: Speech", - "Topic :: Multimedia :: Sound/Audio :: Players", - "Topic :: Multimedia :: Video", - "Topic :: Multimedia :: Video :: Capture", - "Topic :: Multimedia :: Video :: Display", - "Topic :: Office/Business", - "Topic :: Office/Business :: Financial", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Point-Of-Sale", - "Topic :: Office/Business :: Financial :: Spreadsheet", - "Topic :: Office/Business :: Groupware", - "Topic :: Office/Business :: News/Diary", - "Topic :: Office/Business :: Office Suites", - "Topic :: Office/Business :: Scheduling", - "Topic :: Other/Nonlisted Topic", - "Topic :: Printing", - "Topic :: Scientific/Engineering", - "Topic :: Security", - "Topic :: Software Development", - "Topic :: Software Development :: Documentation", - "Topic :: Software Development :: Internationalization", - "Topic :: Software Development :: Quality Assurance", - "Topic :: Software Development :: Testing", - "Topic :: Software Development :: Version Control", - "Topic :: Software Development :: Version Control :: Git", - "Topic :: System :: Systems Administration", - "Topic :: System :: Systems Administration :: Authentication/Directory", - "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP", - "Topic :: Text Editors", - "Topic :: Text Editors :: Documentation", - "Topic :: Text Editors :: Text Processing", - "Topic :: Text Editors :: Word Processors", - "Topic :: Text Processing", - "Topic :: Text Processing :: Markup", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: reStructuredText" -] - -[project.urls] -homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" -documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" -editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" - -[project.optional-dependencies] -tests = [ - "tox", - "pytest", - "flake8", - "pylint", - "pytest-cov" -] -setup = [ - "pytest-runner", - "flake8", - "pylint", - "babel", - "flit", -] -doc = [ - "Sphinx", - "sphinx-nervproject-theme", - "sphinxcontrib-actdiag", - "sphinxcontrib-blockdiag", - "sphinxcontrib-nwdiag", - "sphinxcontrib-seqdiag", - "sphinxcontrib-bibtex", - "sphinxemoji", - "sphinx-galleria", - "sphinx-fasvg", - "sphinx-issues", - "sphinx-sitemap", - "sphinx-git" -] - -[project.scripts] - -[project.entry-points."nervtn.server.apps"] - -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - -[tool.pytest.ini_options] -minversion = "6.0" -addopts = "-ra -q" -testpaths = [ - "tests", -] - -[tool.babel.extract_messages] -mapping_file = "babel.cfg" -output_file = "locale/nervtn.pot" -keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"] -add_comments = "Translators:" - -[tool.babel.init_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.update_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.compile_catalog] -domain = "nervtn" -directory = "locale/" diff --git a/pyprojects/nervtn.toml b/pyprojects/nervtn.toml deleted file mode 100644 index bd51424..0000000 --- a/pyprojects/nervtn.toml +++ /dev/null @@ -1,204 +0,0 @@ -[build-system] -requires = ["flit_core>=3.2"] -build-backend = "flit_core.buildapi" - -[project] -name = "nervtn-base" -version = "0.0.1" -requires-python = ">=3.8" -dependencies = [ - "Sphinx>=3.0.0", - "Django>=3.1" -] -license = {text = "EUPL-1.2"} -authors = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -maintainers = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -description = "Management software for cultural establishments and creators" -readme = {file = "README.rst", content-type = "text/x-rst"} -keywords = ["management", "accounting", "creators", "writing", -"accessibility", "security"] -classifiers = [ - "Framework :: Sphinx", - "Framework :: Sphinx :: Extension", - "Framework :: Django", - "Framework :: Django :: 3.1", - "Framework :: Django :: 3.2", - "Development Status :: 1 - Planning", - "Environment :: Console", - "Environment :: Console :: Curses", - "Environment :: Web Environment", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: Customer Service", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Financial and Insurance Industry", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Information Technology", - "Intended Audience :: Manufacturing", - "Intended Audience :: Other Audience", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: JavaScript", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Operating System :: Android", - "Operating System :: OS Independent", - "Topic :: Adaptive Technologies", - "Topic :: Artistic Software", - "Topic :: Communications", - "Topic :: Communications :: BBS", - "Topic :: Communications :: Chat", - "Topic :: Communications :: Conferencing", - "Topic :: Communications :: Email", - "Topic :: Communications :: Email :: Address Book", - "Topic :: Communications :: Email :: Email Clients (MUA)", - "Topic :: Communications :: Email :: Filters", - "Topic :: Communications :: Email :: Mail Transport Agents", - "Topic :: Communications :: Email :: Mailing List Servers", - "Topic :: Communications :: Email :: Post-Office", - "Topic :: Communications :: Email :: Post-Office :: IMAP", - "Topic :: Communications :: File Sharing", - "Topic :: Communications :: Internet Phone", - "Topic :: Communications :: Telephony", - "Topic :: Documentation", - "Topic :: Documentation :: Sphinx", - "Topic :: Education", - "Topic :: Education :: Computer Aided Instruction (CAI)", - "Topic :: Education :: Testing", - "Topic :: Home Automation", - "Topic :: Internet :: File Transfer Protocol (FTP)", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Internet :: XMPP", - "Topic :: Multimedia", - "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", - "Topic :: Multimedia :: Sound/Audio :: Editors", - "Topic :: Multimedia :: Sound/Audio :: Speech", - "Topic :: Multimedia :: Sound/Audio :: Players", - "Topic :: Multimedia :: Video", - "Topic :: Multimedia :: Video :: Capture", - "Topic :: Multimedia :: Video :: Display", - "Topic :: Office/Business", - "Topic :: Office/Business :: Financial", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Point-Of-Sale", - "Topic :: Office/Business :: Financial :: Spreadsheet", - "Topic :: Office/Business :: Groupware", - "Topic :: Office/Business :: News/Diary", - "Topic :: Office/Business :: Office Suites", - "Topic :: Office/Business :: Scheduling", - "Topic :: Other/Nonlisted Topic", - "Topic :: Printing", - "Topic :: Scientific/Engineering", - "Topic :: Security", - "Topic :: Software Development", - "Topic :: Software Development :: Documentation", - "Topic :: Software Development :: Internationalization", - "Topic :: Software Development :: Quality Assurance", - "Topic :: Software Development :: Testing", - "Topic :: Software Development :: Version Control", - "Topic :: Software Development :: Version Control :: Git", - "Topic :: System :: Systems Administration", - "Topic :: System :: Systems Administration :: Authentication/Directory", - "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP", - "Topic :: Text Editors", - "Topic :: Text Editors :: Documentation", - "Topic :: Text Editors :: Text Processing", - "Topic :: Text Editors :: Word Processors", - "Topic :: Text Processing", - "Topic :: Text Processing :: Markup", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: reStructuredText" -] - -[project.urls] -homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" -documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" -editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" - -[project.optional-dependencies] -tests = [ - "tox", - "pytest", - "flake8", - "pylint", - "pytest-cov" -] -setup = [ - "pytest-runner", - "flake8", - "pylint", - "babel", - "flit", -] -doc = [ - "Sphinx", - "sphinx-nervproject-theme", - "sphinxcontrib-actdiag", - "sphinxcontrib-blockdiag", - "sphinxcontrib-nwdiag", - "sphinxcontrib-seqdiag", - "sphinxcontrib-bibtex", - "sphinxemoji", - "sphinx-galleria", - "sphinx-fasvg", - "sphinx-issues", - "sphinx-sitemap", - "sphinx-git" -] - -[project.scripts] - -[project.entry-points."nervtn.server.apps"] - -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - -[tool.pytest.ini_options] -minversion = "6.0" -addopts = "-ra -q" -testpaths = [ - "tests", -] - -[tool.babel.extract_messages] -mapping_file = "babel.cfg" -output_file = "locale/nervtn.pot" -keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"] -add_comments = "Translators:" - -[tool.babel.init_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.update_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.compile_catalog] -domain = "nervtn" -directory = "locale/" diff --git a/pyprojects/server.apps.accounting.toml b/pyprojects/server.apps.accounting.toml index e8cf3c8..dcb852e 100644 --- a/pyprojects/server.apps.accounting.toml +++ b/pyprojects/server.apps.accounting.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn.server.apps.accounting" +name = "nervtn_server.apps.accounting" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -90,7 +90,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.accreditation.toml b/pyprojects/server.apps.accreditation.toml index 2bf92c6..176223c 100644 --- a/pyprojects/server.apps.accreditation.toml +++ b/pyprojects/server.apps.accreditation.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-accreditation" +name = "nervtn_server-apps-accreditation" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -87,7 +87,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.audit.toml b/pyprojects/server.apps.audit.toml index 5fc9a1e..7417818 100644 --- a/pyprojects/server.apps.audit.toml +++ b/pyprojects/server.apps.audit.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-audit" +name = "nervtn_server-apps-audit" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -99,7 +99,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.auth.toml b/pyprojects/server.apps.auth.toml index 066a766..6348058 100644 --- a/pyprojects/server.apps.auth.toml +++ b/pyprojects/server.apps.auth.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-auth" +name = "nervtn_server-apps-auth" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -89,7 +89,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.automation.toml b/pyprojects/server.apps.automation.toml index fa4c310..8c818e1 100644 --- a/pyprojects/server.apps.automation.toml +++ b/pyprojects/server.apps.automation.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-automation" +name = "nervtn_server-apps-automation" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.base.toml b/pyprojects/server.apps.base.toml index afc970a..589e1eb 100644 --- a/pyprojects/server.apps.base.toml +++ b/pyprojects/server.apps.base.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-base" +name = "nervtn_server-apps-base" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.bbs.toml b/pyprojects/server.apps.bbs.toml index f03ca32..52564a5 100644 --- a/pyprojects/server.apps.bbs.toml +++ b/pyprojects/server.apps.bbs.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-bbs" +name = "nervtn_server-apps-bbs" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.bibliography.toml b/pyprojects/server.apps.bibliography.toml index dc9eba5..e2f65a6 100644 --- a/pyprojects/server.apps.bibliography.toml +++ b/pyprojects/server.apps.bibliography.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-bibliography" +name = "nervtn_server-apps-bibliography" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.builder.toml b/pyprojects/server.apps.builder.toml index d4c8ec7..f472bc0 100644 --- a/pyprojects/server.apps.builder.toml +++ b/pyprojects/server.apps.builder.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-builder" +name = "nervtn_server-apps-builder" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.calendar.toml b/pyprojects/server.apps.calendar.toml index 6c433eb..258d938 100644 --- a/pyprojects/server.apps.calendar.toml +++ b/pyprojects/server.apps.calendar.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-calendar" +name = "nervtn_server-apps-calendar" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.catering.toml b/pyprojects/server.apps.catering.toml index 7dd41ee..af6e884 100644 --- a/pyprojects/server.apps.catering.toml +++ b/pyprojects/server.apps.catering.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-catering" +name = "nervtn_server-apps-catering" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.chat.toml b/pyprojects/server.apps.chat.toml index fc410f3..4892b22 100644 --- a/pyprojects/server.apps.chat.toml +++ b/pyprojects/server.apps.chat.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-chat" +name = "nervtn_server-apps-chat" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.contact.toml b/pyprojects/server.apps.contact.toml index a35d2a8..9f3a0d5 100644 --- a/pyprojects/server.apps.contact.toml +++ b/pyprojects/server.apps.contact.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-contact" +name = "nervtn_server-apps-contact" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.contract.toml b/pyprojects/server.apps.contract.toml index 1f4a553..7642a23 100644 --- a/pyprojects/server.apps.contract.toml +++ b/pyprojects/server.apps.contract.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-contract" +name = "nervtn_server-apps-contract" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.crisis.toml b/pyprojects/server.apps.crisis.toml index 09a37c1..9bba532 100644 --- a/pyprojects/server.apps.crisis.toml +++ b/pyprojects/server.apps.crisis.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-crisis" +name = "nervtn_server-apps-crisis" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.davd.toml b/pyprojects/server.apps.davd.toml index 0d53e8f..d15b97a 100644 --- a/pyprojects/server.apps.davd.toml +++ b/pyprojects/server.apps.davd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-davd" +name = "nervtn_server-apps-davd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.document.toml b/pyprojects/server.apps.document.toml index 0a717b0..b39936e 100644 --- a/pyprojects/server.apps.document.toml +++ b/pyprojects/server.apps.document.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-document" +name = "nervtn_server-apps-document" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.dodp.toml b/pyprojects/server.apps.dodp.toml index 8ba49c2..3b9c488 100644 --- a/pyprojects/server.apps.dodp.toml +++ b/pyprojects/server.apps.dodp.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-dodp" +name = "nervtn_server-apps-dodp" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.drm.toml b/pyprojects/server.apps.drm.toml index d8e6952..520a029 100644 --- a/pyprojects/server.apps.drm.toml +++ b/pyprojects/server.apps.drm.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-drm" +name = "nervtn_server-apps-drm" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.editor.toml b/pyprojects/server.apps.editor.toml index f21ac3d..2f9bcee 100644 --- a/pyprojects/server.apps.editor.toml +++ b/pyprojects/server.apps.editor.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-editor" +name = "nervtn_server-apps-editor" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.employee.toml b/pyprojects/server.apps.employee.toml index 77a0d5f..85240ec 100644 --- a/pyprojects/server.apps.employee.toml +++ b/pyprojects/server.apps.employee.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-employee" +name = "nervtn_server-apps-employee" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.esb.toml b/pyprojects/server.apps.esb.toml index b84d236..9a2e5d4 100644 --- a/pyprojects/server.apps.esb.toml +++ b/pyprojects/server.apps.esb.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-esb" +name = "nervtn_server-apps-esb" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.event.toml b/pyprojects/server.apps.event.toml index bcfa392..cc975ca 100644 --- a/pyprojects/server.apps.event.toml +++ b/pyprojects/server.apps.event.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-event" +name = "nervtn_server-apps-event" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.expedition.toml b/pyprojects/server.apps.expedition.toml index 297d51e..7efc367 100644 --- a/pyprojects/server.apps.expedition.toml +++ b/pyprojects/server.apps.expedition.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-expedition" +name = "nervtn_server-apps-expedition" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.files.toml b/pyprojects/server.apps.files.toml index 4a2ee82..6a584f0 100644 --- a/pyprojects/server.apps.files.toml +++ b/pyprojects/server.apps.files.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-files" +name = "nervtn_server-apps-files" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.ftpd.toml b/pyprojects/server.apps.ftpd.toml index a6509a3..4842e13 100644 --- a/pyprojects/server.apps.ftpd.toml +++ b/pyprojects/server.apps.ftpd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-ftpd" +name = "nervtn_server-apps-ftpd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.help.toml b/pyprojects/server.apps.help.toml index d6d77ee..8ba61d5 100644 --- a/pyprojects/server.apps.help.toml +++ b/pyprojects/server.apps.help.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-help" +name = "nervtn_server-apps-help" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.history.toml b/pyprojects/server.apps.history.toml index d3b42c1..9cc30af 100644 --- a/pyprojects/server.apps.history.toml +++ b/pyprojects/server.apps.history.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-history" +name = "nervtn_server-apps-history" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.imapd.toml b/pyprojects/server.apps.imapd.toml index 2d2ffd6..ffe8d64 100644 --- a/pyprojects/server.apps.imapd.toml +++ b/pyprojects/server.apps.imapd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-imapd" +name = "nervtn_server-apps-imapd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.intervention.toml b/pyprojects/server.apps.intervention.toml index 79102b5..7dcb969 100644 --- a/pyprojects/server.apps.intervention.toml +++ b/pyprojects/server.apps.intervention.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-intervention" +name = "nervtn_server-apps-intervention" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.interview.toml b/pyprojects/server.apps.interview.toml index fb742c5..62ae464 100644 --- a/pyprojects/server.apps.interview.toml +++ b/pyprojects/server.apps.interview.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-interview" +name = "nervtn_server-apps-interview" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.inventory.toml b/pyprojects/server.apps.inventory.toml index 6cf854e..136aec9 100644 --- a/pyprojects/server.apps.inventory.toml +++ b/pyprojects/server.apps.inventory.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-inventory" +name = "nervtn_server-apps-inventory" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.invoice.toml b/pyprojects/server.apps.invoice.toml index b75fd67..77a8bfb 100644 --- a/pyprojects/server.apps.invoice.toml +++ b/pyprojects/server.apps.invoice.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-invoice" +name = "nervtn_server-apps-invoice" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.jmapd.toml b/pyprojects/server.apps.jmapd.toml index 5e8a01d..681db8b 100644 --- a/pyprojects/server.apps.jmapd.toml +++ b/pyprojects/server.apps.jmapd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-jmapd" +name = "nervtn_server-apps-jmapd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.kmipd.toml b/pyprojects/server.apps.kmipd.toml index c3ccc2c..a3c94d4 100644 --- a/pyprojects/server.apps.kmipd.toml +++ b/pyprojects/server.apps.kmipd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-kmipd" +name = "nervtn_server-apps-kmipd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.ldapd.toml b/pyprojects/server.apps.ldapd.toml index daf2612..4f1b438 100644 --- a/pyprojects/server.apps.ldapd.toml +++ b/pyprojects/server.apps.ldapd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-ldapd" +name = "nervtn_server-apps-ldapd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.learning.toml b/pyprojects/server.apps.learning.toml index 3e43094..f470e8d 100644 --- a/pyprojects/server.apps.learning.toml +++ b/pyprojects/server.apps.learning.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-learning" +name = "nervtn_server-apps-learning" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.license.toml b/pyprojects/server.apps.license.toml index 084ad31..d507b66 100644 --- a/pyprojects/server.apps.license.toml +++ b/pyprojects/server.apps.license.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-license" +name = "nervtn_server-apps-license" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.mail.toml b/pyprojects/server.apps.mail.toml index c9ecf98..857c7a5 100644 --- a/pyprojects/server.apps.mail.toml +++ b/pyprojects/server.apps.mail.toml @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.manufacturing.toml b/pyprojects/server.apps.manufacturing.toml index 7397623..89d2ae1 100644 --- a/pyprojects/server.apps.manufacturing.toml +++ b/pyprojects/server.apps.manufacturing.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-manufacturing" +name = "nervtn_server-apps-manufacturing" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.monitoring.toml b/pyprojects/server.apps.monitoring.toml index f688e23..0675601 100644 --- a/pyprojects/server.apps.monitoring.toml +++ b/pyprojects/server.apps.monitoring.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-monitoring" +name = "nervtn_server-apps-monitoring" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.news.toml b/pyprojects/server.apps.news.toml index eab14a8..a28eab6 100644 --- a/pyprojects/server.apps.news.toml +++ b/pyprojects/server.apps.news.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-news" +name = "nervtn_server-apps-news" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.notification.toml b/pyprojects/server.apps.notification.toml index 3072cfe..5807d4b 100644 --- a/pyprojects/server.apps.notification.toml +++ b/pyprojects/server.apps.notification.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-notification" +name = "nervtn_server-apps-notification" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.phone.toml b/pyprojects/server.apps.phone.toml index aaeaf8d..86dd869 100644 --- a/pyprojects/server.apps.phone.toml +++ b/pyprojects/server.apps.phone.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-phone" +name = "nervtn_server-apps-phone" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.pointofsale.toml b/pyprojects/server.apps.pointofsale.toml index 15b2602..3e229a1 100644 --- a/pyprojects/server.apps.pointofsale.toml +++ b/pyprojects/server.apps.pointofsale.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-pointofsale" +name = "nervtn_server-apps-pointofsale" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.pollution.toml b/pyprojects/server.apps.pollution.toml index ced3f85..1d0c2ad 100644 --- a/pyprojects/server.apps.pollution.toml +++ b/pyprojects/server.apps.pollution.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-pollution" +name = "nervtn_server-apps-pollution" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.print.toml b/pyprojects/server.apps.print.toml index b83b874..056aa86 100644 --- a/pyprojects/server.apps.print.toml +++ b/pyprojects/server.apps.print.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-print" +name = "nervtn_server-apps-print" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.privacy.toml b/pyprojects/server.apps.privacy.toml index a190ac3..1a6618e 100644 --- a/pyprojects/server.apps.privacy.toml +++ b/pyprojects/server.apps.privacy.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-privacy" +name = "nervtn_server-apps-privacy" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.project.toml b/pyprojects/server.apps.project.toml index 2775346..e6bd95f 100644 --- a/pyprojects/server.apps.project.toml +++ b/pyprojects/server.apps.project.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-project" +name = "nervtn_server-apps-project" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.quality.toml b/pyprojects/server.apps.quality.toml index 9f419c5..11d73eb 100644 --- a/pyprojects/server.apps.quality.toml +++ b/pyprojects/server.apps.quality.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-quality" +name = "nervtn_server-apps-quality" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.queue.toml b/pyprojects/server.apps.queue.toml index 405a270..9b816ce 100644 --- a/pyprojects/server.apps.queue.toml +++ b/pyprojects/server.apps.queue.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-queue" +name = "nervtn_server-apps-queue" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.restoration.toml b/pyprojects/server.apps.restoration.toml index 6d91db5..2b6ce7e 100644 --- a/pyprojects/server.apps.restoration.toml +++ b/pyprojects/server.apps.restoration.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-restoration" +name = "nervtn_server-apps-restoration" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.risk.toml b/pyprojects/server.apps.risk.toml index d89bc49..5831e50 100644 --- a/pyprojects/server.apps.risk.toml +++ b/pyprojects/server.apps.risk.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-risk" +name = "nervtn_server-apps-risk" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.security.toml b/pyprojects/server.apps.security.toml index 8e5b9b0..1bdf80d 100644 --- a/pyprojects/server.apps.security.toml +++ b/pyprojects/server.apps.security.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-security" +name = "nervtn_server-apps-security" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.shop.toml b/pyprojects/server.apps.shop.toml index 910b138..5f2545f 100644 --- a/pyprojects/server.apps.shop.toml +++ b/pyprojects/server.apps.shop.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-shop" +name = "nervtn_server-apps-shop" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.sipd.toml b/pyprojects/server.apps.sipd.toml index 10aa200..7e45d5e 100644 --- a/pyprojects/server.apps.sipd.toml +++ b/pyprojects/server.apps.sipd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-sipd" +name = "nervtn_server-apps-sipd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.smtpd.toml b/pyprojects/server.apps.smtpd.toml index f8ec0c3..6ed558b 100644 --- a/pyprojects/server.apps.smtpd.toml +++ b/pyprojects/server.apps.smtpd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-smtpd" +name = "nervtn_server-apps-smtpd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.sshd.toml b/pyprojects/server.apps.sshd.toml index 4698dd2..b8fc10d 100644 --- a/pyprojects/server.apps.sshd.toml +++ b/pyprojects/server.apps.sshd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-sshd" +name = "nervtn_server-apps-sshd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.stock.toml b/pyprojects/server.apps.stock.toml index ed4cc78..7581d4f 100644 --- a/pyprojects/server.apps.stock.toml +++ b/pyprojects/server.apps.stock.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-stock" +name = "nervtn_server-apps-stock" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.storage.toml b/pyprojects/server.apps.storage.toml index 5a35515..b8740ed 100644 --- a/pyprojects/server.apps.storage.toml +++ b/pyprojects/server.apps.storage.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-storage" +name = "nervtn_server-apps-storage" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.submission.toml b/pyprojects/server.apps.submission.toml index 1017013..a6164b6 100644 --- a/pyprojects/server.apps.submission.toml +++ b/pyprojects/server.apps.submission.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-submission" +name = "nervtn_server-apps-submission" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.survey.toml b/pyprojects/server.apps.survey.toml index 9fc3d51..24a9e98 100644 --- a/pyprojects/server.apps.survey.toml +++ b/pyprojects/server.apps.survey.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-survey" +name = "nervtn_server-apps-survey" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.sync.toml b/pyprojects/server.apps.sync.toml index b0d7889..875b8d4 100644 --- a/pyprojects/server.apps.sync.toml +++ b/pyprojects/server.apps.sync.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-sync" +name = "nervtn_server-apps-sync" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.system_health.toml b/pyprojects/server.apps.system_health.toml index f020300..1c80b97 100644 --- a/pyprojects/server.apps.system_health.toml +++ b/pyprojects/server.apps.system_health.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-system_health" +name = "nervtn_server-apps-system_health" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.task.toml b/pyprojects/server.apps.task.toml index 96a420d..200a744 100644 --- a/pyprojects/server.apps.task.toml +++ b/pyprojects/server.apps.task.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-tasks" +name = "nervtn_server-apps-tasks" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.ticket.toml b/pyprojects/server.apps.ticket.toml index 94aedf1..8973a37 100644 --- a/pyprojects/server.apps.ticket.toml +++ b/pyprojects/server.apps.ticket.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-ticket" +name = "nervtn_server-apps-ticket" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.translation.toml b/pyprojects/server.apps.translation.toml index 653d243..10276bc 100644 --- a/pyprojects/server.apps.translation.toml +++ b/pyprojects/server.apps.translation.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-translation" +name = "nervtn_server-apps-translation" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.website.toml b/pyprojects/server.apps.website.toml index 596e752..997a449 100644 --- a/pyprojects/server.apps.website.toml +++ b/pyprojects/server.apps.website.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-website" +name = "nervtn_server-apps-website" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.apps.xmppd.toml b/pyprojects/server.apps.xmppd.toml index 06469ce..428b74e 100644 --- a/pyprojects/server.apps.xmppd.toml +++ b/pyprojects/server.apps.xmppd.toml @@ -3,7 +3,7 @@ requires = ["flit_core>=3.2"] build-backend = "flit_core.buildapi" [project] -name = "nervtn-server-apps-xmppd" +name = "nervtn_server-apps-xmppd" version = "0.0.1" requires-python = ">=3.8" dependencies = [ @@ -165,7 +165,7 @@ doc = [ [project.scripts] -[project.entry-points."nervtn.server.apps"] +[project.entry-points."nervtn_server.apps"] [project.entry-points."nervtn.client.apps"] diff --git a/pyprojects/server.main.toml b/pyprojects/server.main.toml deleted file mode 100644 index d3171fd..0000000 --- a/pyprojects/server.main.toml +++ /dev/null @@ -1,204 +0,0 @@ -[build-system] -requires = ["flit_core>=3.2"] -build-backend = "flit_core.buildapi" - -[project] -name = "nervtn-server-main" -version = "0.0.1" -requires-python = ">=3.8" -dependencies = [ - "Sphinx>=3.0.0", - "Django>=3.1" -] -license = {text = "EUPL-1.2"} -authors = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -maintainers = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -description = "NervTN - main server" -readme = {file = "README.rst", content-type = "text/x-rst"} -keywords = ["management", "accounting", "creators", "writing", -"accessibility", "security"] -classifiers = [ - "Framework :: Sphinx", - "Framework :: Sphinx :: Extension", - "Framework :: Django", - "Framework :: Django :: 3.1", - "Framework :: Django :: 3.2", - "Development Status :: 1 - Planning", - "Environment :: Console", - "Environment :: Console :: Curses", - "Environment :: Web Environment", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: Customer Service", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Financial and Insurance Industry", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Information Technology", - "Intended Audience :: Manufacturing", - "Intended Audience :: Other Audience", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: JavaScript", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Operating System :: Android", - "Operating System :: OS Independent", - "Topic :: Adaptive Technologies", - "Topic :: Artistic Software", - "Topic :: Communications", - "Topic :: Communications :: BBS", - "Topic :: Communications :: Chat", - "Topic :: Communications :: Conferencing", - "Topic :: Communications :: Email", - "Topic :: Communications :: Email :: Address Book", - "Topic :: Communications :: Email :: Email Clients (MUA)", - "Topic :: Communications :: Email :: Filters", - "Topic :: Communications :: Email :: Mail Transport Agents", - "Topic :: Communications :: Email :: Mailing List Servers", - "Topic :: Communications :: Email :: Post-Office", - "Topic :: Communications :: Email :: Post-Office :: IMAP", - "Topic :: Communications :: File Sharing", - "Topic :: Communications :: Internet Phone", - "Topic :: Communications :: Telephony", - "Topic :: Documentation", - "Topic :: Documentation :: Sphinx", - "Topic :: Education", - "Topic :: Education :: Computer Aided Instruction (CAI)", - "Topic :: Education :: Testing", - "Topic :: Home Automation", - "Topic :: Internet :: File Transfer Protocol (FTP)", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Internet :: XMPP", - "Topic :: Multimedia", - "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", - "Topic :: Multimedia :: Sound/Audio :: Editors", - "Topic :: Multimedia :: Sound/Audio :: Speech", - "Topic :: Multimedia :: Sound/Audio :: Players", - "Topic :: Multimedia :: Video", - "Topic :: Multimedia :: Video :: Capture", - "Topic :: Multimedia :: Video :: Display", - "Topic :: Office/Business", - "Topic :: Office/Business :: Financial", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Point-Of-Sale", - "Topic :: Office/Business :: Financial :: Spreadsheet", - "Topic :: Office/Business :: Groupware", - "Topic :: Office/Business :: News/Diary", - "Topic :: Office/Business :: Office Suites", - "Topic :: Office/Business :: Scheduling", - "Topic :: Other/Nonlisted Topic", - "Topic :: Printing", - "Topic :: Scientific/Engineering", - "Topic :: Security", - "Topic :: Software Development", - "Topic :: Software Development :: Documentation", - "Topic :: Software Development :: Internationalization", - "Topic :: Software Development :: Quality Assurance", - "Topic :: Software Development :: Testing", - "Topic :: Software Development :: Version Control", - "Topic :: Software Development :: Version Control :: Git", - "Topic :: System :: Systems Administration", - "Topic :: System :: Systems Administration :: Authentication/Directory", - "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP", - "Topic :: Text Editors", - "Topic :: Text Editors :: Documentation", - "Topic :: Text Editors :: Text Processing", - "Topic :: Text Editors :: Word Processors", - "Topic :: Text Processing", - "Topic :: Text Processing :: Markup", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: reStructuredText" -] - -[project.urls] -homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" -documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" -editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" - -[project.optional-dependencies] -tests = [ - "tox", - "pytest", - "flake8", - "pylint", - "pytest-cov" -] -setup = [ - "pytest-runner", - "flake8", - "pylint", - "babel", - "flit", -] -doc = [ - "Sphinx", - "sphinx-nervproject-theme", - "sphinxcontrib-actdiag", - "sphinxcontrib-blockdiag", - "sphinxcontrib-nwdiag", - "sphinxcontrib-seqdiag", - "sphinxcontrib-bibtex", - "sphinxemoji", - "sphinx-galleria", - "sphinx-fasvg", - "sphinx-issues", - "sphinx-sitemap", - "sphinx-git" -] - -[project.scripts] - -[project.entry-points."nervtn.server.apps"] - -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - -[tool.pytest.ini_options] -minversion = "6.0" -addopts = "-ra -q" -testpaths = [ - "tests", -] - -[tool.babel.extract_messages] -mapping_file = "babel.cfg" -output_file = "locale/nervtn.pot" -keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"] -add_comments = "Translators:" - -[tool.babel.init_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.update_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.compile_catalog] -domain = "nervtn" -directory = "locale/" diff --git a/pyprojects/server.security.toml b/pyprojects/server.security.toml deleted file mode 100644 index 419eb00..0000000 --- a/pyprojects/server.security.toml +++ /dev/null @@ -1,204 +0,0 @@ -[build-system] -requires = ["flit_core>=3.2"] -build-backend = "flit_core.buildapi" - -[project] -name = "nervtn-server-security" -version = "0.0.1" -requires-python = ">=3.8" -dependencies = [ - "Sphinx>=3.0.0", - "Django>=3.1" -] -license = {text = "EUPL-1.2"} -authors = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -maintainers = [ - {name = "Nerv Project ASBL", email = "contact@nerv-project.eu"}, - {name = "kujiu"}, - {name = "ptitgnu"} -] -description = "NervTN - Security server" -readme = {file = "README.rst", content-type = "text/x-rst"} -keywords = ["management", "accounting", "creators", "writing", -"accessibility", "security"] -classifiers = [ - "Framework :: Sphinx", - "Framework :: Sphinx :: Extension", - "Framework :: Django", - "Framework :: Django :: 3.1", - "Framework :: Django :: 3.2", - "Development Status :: 1 - Planning", - "Environment :: Console", - "Environment :: Console :: Curses", - "Environment :: Web Environment", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: Customer Service", - "Intended Audience :: Developers", - "Intended Audience :: Education", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Financial and Insurance Industry", - "Intended Audience :: Healthcare Industry", - "Intended Audience :: Information Technology", - "Intended Audience :: Manufacturing", - "Intended Audience :: Other Audience", - "Intended Audience :: Science/Research", - "Intended Audience :: System Administrators", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)", - "Programming Language :: JavaScript", - "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.8", - "Programming Language :: Python :: 3.9", - "Operating System :: Android", - "Operating System :: OS Independent", - "Topic :: Adaptive Technologies", - "Topic :: Artistic Software", - "Topic :: Communications", - "Topic :: Communications :: BBS", - "Topic :: Communications :: Chat", - "Topic :: Communications :: Conferencing", - "Topic :: Communications :: Email", - "Topic :: Communications :: Email :: Address Book", - "Topic :: Communications :: Email :: Email Clients (MUA)", - "Topic :: Communications :: Email :: Filters", - "Topic :: Communications :: Email :: Mail Transport Agents", - "Topic :: Communications :: Email :: Mailing List Servers", - "Topic :: Communications :: Email :: Post-Office", - "Topic :: Communications :: Email :: Post-Office :: IMAP", - "Topic :: Communications :: File Sharing", - "Topic :: Communications :: Internet Phone", - "Topic :: Communications :: Telephony", - "Topic :: Documentation", - "Topic :: Documentation :: Sphinx", - "Topic :: Education", - "Topic :: Education :: Computer Aided Instruction (CAI)", - "Topic :: Education :: Testing", - "Topic :: Home Automation", - "Topic :: Internet :: File Transfer Protocol (FTP)", - "Topic :: Internet :: WWW/HTTP :: Site Management", - "Topic :: Internet :: XMPP", - "Topic :: Multimedia", - "Topic :: Multimedia :: Sound/Audio :: Capture/Recording", - "Topic :: Multimedia :: Sound/Audio :: Editors", - "Topic :: Multimedia :: Sound/Audio :: Speech", - "Topic :: Multimedia :: Sound/Audio :: Players", - "Topic :: Multimedia :: Video", - "Topic :: Multimedia :: Video :: Capture", - "Topic :: Multimedia :: Video :: Display", - "Topic :: Office/Business", - "Topic :: Office/Business :: Financial", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Accounting", - "Topic :: Office/Business :: Financial :: Point-Of-Sale", - "Topic :: Office/Business :: Financial :: Spreadsheet", - "Topic :: Office/Business :: Groupware", - "Topic :: Office/Business :: News/Diary", - "Topic :: Office/Business :: Office Suites", - "Topic :: Office/Business :: Scheduling", - "Topic :: Other/Nonlisted Topic", - "Topic :: Printing", - "Topic :: Scientific/Engineering", - "Topic :: Security", - "Topic :: Software Development", - "Topic :: Software Development :: Documentation", - "Topic :: Software Development :: Internationalization", - "Topic :: Software Development :: Quality Assurance", - "Topic :: Software Development :: Testing", - "Topic :: Software Development :: Version Control", - "Topic :: Software Development :: Version Control :: Git", - "Topic :: System :: Systems Administration", - "Topic :: System :: Systems Administration :: Authentication/Directory", - "Topic :: System :: Systems Administration :: Authentication/Directory :: LDAP", - "Topic :: Text Editors", - "Topic :: Text Editors :: Documentation", - "Topic :: Text Editors :: Text Processing", - "Topic :: Text Editors :: Word Processors", - "Topic :: Text Processing", - "Topic :: Text Processing :: Markup", - "Topic :: Text Processing :: Markup :: HTML", - "Topic :: Text Processing :: Markup :: Markdown", - "Topic :: Text Processing :: Markup :: reStructuredText" -] - -[project.urls] -homepage = "https://tn.nerv-project.eu" -repository = "https://procrastinator.nerv-project.eu/nerv-project/nervtn" -documentation = "https://tn.nerv-project.eu" -issues = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/issues" -editor = "https://www.nerv-project.eu" -changelog = "https://procrastinator.nerv-project.eu/nerv-project/nervtn/raw/branch/main/CHANGES.rst" - -[project.optional-dependencies] -tests = [ - "tox", - "pytest", - "flake8", - "pylint", - "pytest-cov" -] -setup = [ - "pytest-runner", - "flake8", - "pylint", - "babel", - "flit", -] -doc = [ - "Sphinx", - "sphinx-nervproject-theme", - "sphinxcontrib-actdiag", - "sphinxcontrib-blockdiag", - "sphinxcontrib-nwdiag", - "sphinxcontrib-seqdiag", - "sphinxcontrib-bibtex", - "sphinxemoji", - "sphinx-galleria", - "sphinx-fasvg", - "sphinx-issues", - "sphinx-sitemap", - "sphinx-git" -] - -[project.scripts] - -[project.entry-points."nervtn.server.apps"] - -[project.entry-points."nervtn.client.apps"] - -[project.entry-points."nervtn.client.tui.apps"] - -[project.entry-points."nervtn.client.gui.apps"] - -[tool.flit.module] -name = "nervtn" - -[tool.pytest.ini_options] -minversion = "6.0" -addopts = "-ra -q" -testpaths = [ - "tests", -] - -[tool.babel.extract_messages] -mapping_file = "babel.cfg" -output_file = "locale/nervtn.pot" -keywords = ["_", "__", "l_", "lazy_gettext", "gettext", "ngettext"] -add_comments = "Translators:" - -[tool.babel.init_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.update_catalog] -domain = "nervtn" -input_file = "locale/nervtn.pot" -output_dir = "locale/" - -[tool.babel.compile_catalog] -domain = "nervtn" -directory = "locale/"