v0.1.12
This commit is contained in:
@@ -1,10 +1,11 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: data-entry-app-backend
|
||||
Version: 0.1.5
|
||||
Version: 0.1.12
|
||||
Summary: Costing platform MVP backend
|
||||
Requires-Python: >=3.11
|
||||
Requires-Dist: fastapi<1.0,>=0.115
|
||||
Requires-Dist: openpyxl<4.0,>=3.1
|
||||
Requires-Dist: rich<15.0,>=13.9
|
||||
Requires-Dist: uvicorn[standard]<1.0,>=0.30
|
||||
Requires-Dist: sqlalchemy<3.0,>=2.0
|
||||
Requires-Dist: pydantic<3.0,>=2.8
|
||||
|
||||
@@ -9,16 +9,23 @@ pyproject.toml
|
||||
./app/api/client_access.py
|
||||
./app/api/dashboard.py
|
||||
./app/api/deps.py
|
||||
./app/api/editor.py
|
||||
./app/api/mix_calculator.py
|
||||
./app/api/mixes.py
|
||||
./app/api/powerbi.py
|
||||
./app/api/product_costing.py
|
||||
./app/api/products.py
|
||||
./app/api/raw_materials.py
|
||||
./app/api/scenarios.py
|
||||
./app/api/throughput.py
|
||||
./app/core/__init__.py
|
||||
./app/core/access.py
|
||||
./app/core/config.py
|
||||
./app/core/http.py
|
||||
./app/core/logging.py
|
||||
./app/core/rate_limit.py
|
||||
./app/core/security.py
|
||||
./app/core/security_logging.py
|
||||
./app/db/__init__.py
|
||||
./app/db/migrations.py
|
||||
./app/db/session.py
|
||||
@@ -29,53 +36,96 @@ pyproject.toml
|
||||
./app/models/mix.py
|
||||
./app/models/mix_calculator.py
|
||||
./app/models/product.py
|
||||
./app/models/product_costing.py
|
||||
./app/models/raw_material.py
|
||||
./app/models/scenario.py
|
||||
./app/models/throughput.py
|
||||
./app/schemas/__init__.py
|
||||
./app/schemas/client_access.py
|
||||
./app/schemas/editor.py
|
||||
./app/schemas/mix.py
|
||||
./app/schemas/mix_calculator.py
|
||||
./app/schemas/product.py
|
||||
./app/schemas/product_costing.py
|
||||
./app/schemas/raw_material.py
|
||||
./app/schemas/scenario.py
|
||||
./app/schemas/throughput.py
|
||||
./app/services/__init__.py
|
||||
./app/services/client_access_service.py
|
||||
./app/services/costing_engine.py
|
||||
./app/services/mix_calculator_filenames.py
|
||||
./app/services/mix_calculator_pdf.py
|
||||
./app/services/mix_calculator_service.py
|
||||
./app/services/product_costing_service.py
|
||||
./app/services/scenario_engine.py
|
||||
./app/services/throughput_service.py
|
||||
app/__init__.py
|
||||
app/main.py
|
||||
app/seed.py
|
||||
app/seed_access.py
|
||||
app/api/__init__.py
|
||||
app/api/access.py
|
||||
app/api/auth.py
|
||||
app/api/client_access.py
|
||||
app/api/dashboard.py
|
||||
app/api/deps.py
|
||||
app/api/editor.py
|
||||
app/api/mix_calculator.py
|
||||
app/api/mixes.py
|
||||
app/api/powerbi.py
|
||||
app/api/product_costing.py
|
||||
app/api/products.py
|
||||
app/api/raw_materials.py
|
||||
app/api/scenarios.py
|
||||
app/api/throughput.py
|
||||
app/core/__init__.py
|
||||
app/core/access.py
|
||||
app/core/config.py
|
||||
app/core/http.py
|
||||
app/core/logging.py
|
||||
app/core/rate_limit.py
|
||||
app/core/security.py
|
||||
app/core/security_logging.py
|
||||
app/db/__init__.py
|
||||
app/db/migrations.py
|
||||
app/db/session.py
|
||||
app/models/__init__.py
|
||||
app/models/access.py
|
||||
app/models/assumption.py
|
||||
app/models/client_access.py
|
||||
app/models/mix.py
|
||||
app/models/mix_calculator.py
|
||||
app/models/product.py
|
||||
app/models/product_costing.py
|
||||
app/models/raw_material.py
|
||||
app/models/scenario.py
|
||||
app/models/throughput.py
|
||||
app/schemas/__init__.py
|
||||
app/schemas/client_access.py
|
||||
app/schemas/editor.py
|
||||
app/schemas/mix.py
|
||||
app/schemas/mix_calculator.py
|
||||
app/schemas/product.py
|
||||
app/schemas/product_costing.py
|
||||
app/schemas/raw_material.py
|
||||
app/schemas/scenario.py
|
||||
app/schemas/throughput.py
|
||||
app/services/__init__.py
|
||||
app/services/client_access_service.py
|
||||
app/services/costing_engine.py
|
||||
app/services/mix_calculator_filenames.py
|
||||
app/services/mix_calculator_pdf.py
|
||||
app/services/mix_calculator_service.py
|
||||
app/services/product_costing_service.py
|
||||
app/services/scenario_engine.py
|
||||
app/services/throughput_service.py
|
||||
data_entry_app_backend.egg-info/PKG-INFO
|
||||
data_entry_app_backend.egg-info/SOURCES.txt
|
||||
data_entry_app_backend.egg-info/dependency_links.txt
|
||||
data_entry_app_backend.egg-info/requires.txt
|
||||
data_entry_app_backend.egg-info/top_level.txt
|
||||
tests/test_access.py
|
||||
tests/test_costing_engine.py
|
||||
tests/test_costing_engine.py
|
||||
tests/test_product_costing.py
|
||||
tests/test_schema.py
|
||||
tests/test_throughput.py
|
||||
@@ -1,5 +1,6 @@
|
||||
fastapi<1.0,>=0.115
|
||||
openpyxl<4.0,>=3.1
|
||||
rich<15.0,>=13.9
|
||||
uvicorn[standard]<1.0,>=0.30
|
||||
sqlalchemy<3.0,>=2.0
|
||||
pydantic<3.0,>=2.8
|
||||
|
||||
Reference in New Issue
Block a user