We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4d2494 commit ce50050Copy full SHA for ce50050
pyproject.toml
@@ -0,0 +1,22 @@
1
+[build-system]
2
+requires = ["setuptools", "wheel"]
3
+build-backend = "setuptools.build_meta"
4
+
5
+[project]
6
+name = "semantic_matcher"
7
+version = "0.1.0"
8
+description = "A Prototype Semantic Matcher implemented in Python"
9
+readme = "README.md"
10
+requires-python = ">=3.11"
11
+authors = [
12
+ { name = "Sebastian Heppner", email = "mail@s-heppner.com" }
13
+]
14
+dependencies = [
15
+ "fastapi>=0.95.0",
16
+ "pydantic>=1.10",
17
+ "uvicorn>=0.21.1",
18
+ "requests>=2.31.0",
19
20
21
+[tool.setuptools]
22
+packages = { find = { include = ["semantic_matcher"], exclude = ["test*"] } }
requirements.txt
setup.py
0 commit comments