Skip to content

Commit ce50050

Browse files
committed
Refactor away from setup.py and toward pyproject.toml
1 parent d4d2494 commit ce50050

File tree

3 files changed

+22
-20
lines changed

3 files changed

+22
-20
lines changed

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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 = "[email protected]" }
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

Lines changed: 0 additions & 4 deletions
This file was deleted.

setup.py

Lines changed: 0 additions & 16 deletions
This file was deleted.

0 commit comments

Comments
 (0)