diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ad09b12 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/src/orfeo_django_toolkit.egg-info/ +.idea/ \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..39e6485 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +recursive-include src/orfeo-django-toolkit/templates * +recursive-include src/orfeo-django-toolkit/static * +recursive-include src/orfeo-django-toolkit/templatetags * \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..86587d7 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,20 @@ +[build-system] +requires = ["setuptools>=69", "wheel"] +build-backend = "setuptools.build_meta" + +[project] +name = "orfeo-django-toolkit" +version = "0.1.0" +description = "Reusable Django components and utilities" +readme = "README.md" +requires-python = ">=3.13" +dependencies = [ + "Django>=5.2", +] + +[tool.setuptools] +package-dir = {"" = "src"} +include-package-data = true + +[tool.setuptools.packages.find] +where = ["src"] \ No newline at end of file diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/orfeo_django_toolkit/__init__.py b/src/orfeo_django_toolkit/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/src/orfeo_django_toolkit/apps.py b/src/orfeo_django_toolkit/apps.py new file mode 100644 index 0000000..c83f124 --- /dev/null +++ b/src/orfeo_django_toolkit/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class CharlesCoreConfig(AppConfig): + default_auto_field = "django.db.models.BigAutoField" + name = "orfeo-django-toolkit" \ No newline at end of file