feat(projekt-matching): scaffold package, venv, pytest smoke
This commit is contained in:
4
projekt-matching/.gitignore
vendored
Normal file
4
projekt-matching/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
.venv/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.local.env
|
||||
4
projekt-matching/projektmatch.egg-info/PKG-INFO
Normal file
4
projekt-matching/projektmatch.egg-info/PKG-INFO
Normal file
@@ -0,0 +1,4 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: projektmatch
|
||||
Version: 0.1.0
|
||||
Summary: Automated freelancermap project matching (Langflow backend)
|
||||
7
projekt-matching/projektmatch.egg-info/SOURCES.txt
Normal file
7
projekt-matching/projektmatch.egg-info/SOURCES.txt
Normal 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
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
1
projekt-matching/projektmatch.egg-info/top_level.txt
Normal file
1
projekt-matching/projektmatch.egg-info/top_level.txt
Normal file
@@ -0,0 +1 @@
|
||||
projektmatch
|
||||
1
projekt-matching/projektmatch/__init__.py
Normal file
1
projekt-matching/projektmatch/__init__.py
Normal file
@@ -0,0 +1 @@
|
||||
"""projektmatch — automated freelancermap project matching (Langflow backend)."""
|
||||
12
projekt-matching/pyproject.toml
Normal file
12
projekt-matching/pyproject.toml
Normal 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*"]
|
||||
2
projekt-matching/pytest.ini
Normal file
2
projekt-matching/pytest.ini
Normal file
@@ -0,0 +1,2 @@
|
||||
[pytest]
|
||||
testpaths = tests
|
||||
5
projekt-matching/tests/test_smoke.py
Normal file
5
projekt-matching/tests/test_smoke.py
Normal file
@@ -0,0 +1,5 @@
|
||||
import projektmatch
|
||||
|
||||
|
||||
def test_package_imports():
|
||||
assert projektmatch.__doc__
|
||||
Reference in New Issue
Block a user