From 963fe45a25cf9f19ee6f818eb7d712b2a8cc89f92f586968f7d73839e5b58325 Mon Sep 17 00:00:00 2001 From: tlg Date: Thu, 9 Jul 2026 10:02:38 +0200 Subject: [PATCH] feat(projekt-matching): scaffold package, venv, pytest smoke --- projekt-matching/.gitignore | 4 ++++ projekt-matching/projektmatch.egg-info/PKG-INFO | 4 ++++ projekt-matching/projektmatch.egg-info/SOURCES.txt | 7 +++++++ .../projektmatch.egg-info/dependency_links.txt | 1 + projekt-matching/projektmatch.egg-info/top_level.txt | 1 + projekt-matching/projektmatch/__init__.py | 1 + projekt-matching/pyproject.toml | 12 ++++++++++++ projekt-matching/pytest.ini | 2 ++ projekt-matching/tests/test_smoke.py | 5 +++++ 9 files changed, 37 insertions(+) create mode 100644 projekt-matching/.gitignore create mode 100644 projekt-matching/projektmatch.egg-info/PKG-INFO create mode 100644 projekt-matching/projektmatch.egg-info/SOURCES.txt create mode 100644 projekt-matching/projektmatch.egg-info/dependency_links.txt create mode 100644 projekt-matching/projektmatch.egg-info/top_level.txt create mode 100644 projekt-matching/projektmatch/__init__.py create mode 100644 projekt-matching/pyproject.toml create mode 100644 projekt-matching/pytest.ini create mode 100644 projekt-matching/tests/test_smoke.py diff --git a/projekt-matching/.gitignore b/projekt-matching/.gitignore new file mode 100644 index 0000000..00d897e --- /dev/null +++ b/projekt-matching/.gitignore @@ -0,0 +1,4 @@ +.venv/ +__pycache__/ +*.pyc +*.local.env diff --git a/projekt-matching/projektmatch.egg-info/PKG-INFO b/projekt-matching/projektmatch.egg-info/PKG-INFO new file mode 100644 index 0000000..60f5e46 --- /dev/null +++ b/projekt-matching/projektmatch.egg-info/PKG-INFO @@ -0,0 +1,4 @@ +Metadata-Version: 2.4 +Name: projektmatch +Version: 0.1.0 +Summary: Automated freelancermap project matching (Langflow backend) diff --git a/projekt-matching/projektmatch.egg-info/SOURCES.txt b/projekt-matching/projektmatch.egg-info/SOURCES.txt new file mode 100644 index 0000000..9f59d23 --- /dev/null +++ b/projekt-matching/projektmatch.egg-info/SOURCES.txt @@ -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 \ No newline at end of file diff --git a/projekt-matching/projektmatch.egg-info/dependency_links.txt b/projekt-matching/projektmatch.egg-info/dependency_links.txt new file mode 100644 index 0000000..4c0d52d --- /dev/null +++ b/projekt-matching/projektmatch.egg-info/dependency_links.txt @@ -0,0 +1 @@ + diff --git a/projekt-matching/projektmatch.egg-info/top_level.txt b/projekt-matching/projektmatch.egg-info/top_level.txt new file mode 100644 index 0000000..30cfd99 --- /dev/null +++ b/projekt-matching/projektmatch.egg-info/top_level.txt @@ -0,0 +1 @@ +projektmatch diff --git a/projekt-matching/projektmatch/__init__.py b/projekt-matching/projektmatch/__init__.py new file mode 100644 index 0000000..e57311a --- /dev/null +++ b/projekt-matching/projektmatch/__init__.py @@ -0,0 +1 @@ +"""projektmatch — automated freelancermap project matching (Langflow backend).""" diff --git a/projekt-matching/pyproject.toml b/projekt-matching/pyproject.toml new file mode 100644 index 0000000..b486d34 --- /dev/null +++ b/projekt-matching/pyproject.toml @@ -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*"] diff --git a/projekt-matching/pytest.ini b/projekt-matching/pytest.ini new file mode 100644 index 0000000..c898d22 --- /dev/null +++ b/projekt-matching/pytest.ini @@ -0,0 +1,2 @@ +[pytest] +testpaths = tests diff --git a/projekt-matching/tests/test_smoke.py b/projekt-matching/tests/test_smoke.py new file mode 100644 index 0000000..a4267fc --- /dev/null +++ b/projekt-matching/tests/test_smoke.py @@ -0,0 +1,5 @@ +import projektmatch + + +def test_package_imports(): + assert projektmatch.__doc__