feat(projekt-matching): scaffold package, venv, pytest smoke

This commit is contained in:
tlg
2026-07-09 10:02:38 +02:00
parent 8a39b9aff4
commit 963fe45a25
9 changed files with 37 additions and 0 deletions

4
projekt-matching/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
.venv/
__pycache__/
*.pyc
*.local.env

View File

@@ -0,0 +1,4 @@
Metadata-Version: 2.4
Name: projektmatch
Version: 0.1.0
Summary: Automated freelancermap project matching (Langflow backend)

View File

@@ -0,0 +1,7 @@
pyproject.toml
projektmatch/__init__.py
projektmatch.egg-info/PKG-INFO
projektmatch.egg-info/SOURCES.txt
projektmatch.egg-info/dependency_links.txt
projektmatch.egg-info/top_level.txt
tests/test_smoke.py

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1 @@
projektmatch

View File

@@ -0,0 +1 @@
"""projektmatch — automated freelancermap project matching (Langflow backend)."""

View File

@@ -0,0 +1,12 @@
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "projektmatch"
version = "0.1.0"
description = "Automated freelancermap project matching (Langflow backend)"
[tool.setuptools.packages.find]
where = ["."]
include = ["projektmatch*"]

View File

@@ -0,0 +1,2 @@
[pytest]
testpaths = tests

View File

@@ -0,0 +1,5 @@
import projektmatch
def test_package_imports():
assert projektmatch.__doc__