endoreg-db 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: endoreg-db
3
+ Version: 0.1.0
4
+ Summary: EndoReg projects db backend
5
+ License: GNU v3
6
+ Author: Thomas J. Lux
7
+ Requires-Python: >=3.11,<4.0
8
+ Classifier: License :: Other/Proprietary License
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3.11
11
+ Classifier: Programming Language :: Python :: 3.12
12
+ Requires-Dist: pillow (>=10.2.0,<11.0.0)
13
+ Description-Content-Type: text/markdown
14
+
15
+
16
+ # Usage
17
+ ## instantiate environment without project:
18
+
19
+
@@ -0,0 +1,4 @@
1
+
2
+ # Usage
3
+ ## instantiate environment without project:
4
+
File without changes
@@ -0,0 +1,3 @@
1
+ from django.contrib import admin
2
+
3
+ # Register your models here.
@@ -0,0 +1,6 @@
1
+ from django.apps import AppConfig
2
+
3
+
4
+ class EndoregDbConfig(AppConfig):
5
+ default_auto_field = 'django.db.models.BigAutoField'
6
+ name = 'endoreg_db'
File without changes
@@ -0,0 +1,3 @@
1
+ from django.db import models
2
+
3
+ # Create your models here.
@@ -0,0 +1,3 @@
1
+ from django.test import TestCase
2
+
3
+ # Create your tests here.
@@ -0,0 +1,3 @@
1
+ from django.shortcuts import render
2
+
3
+ # Create your views here.
@@ -0,0 +1,18 @@
1
+ [tool.poetry]
2
+ name = "endoreg-db"
3
+ version = "0.1.0"
4
+ description = "EndoReg projects db backend"
5
+ authors = ["Thomas J. Lux"]
6
+ license = "GNU v3"
7
+ readme = "README.md"
8
+
9
+ [tool.poetry.dependencies]
10
+ python = "^3.11"
11
+ pillow = "^10.2.0"
12
+
13
+ [tool.poetry.group.dev.dependencies]
14
+ pytest = "^8.0.0"
15
+
16
+ [build-system]
17
+ requires = ["poetry-core"]
18
+ build-backend = "poetry.core.masonry.api"