Skip to content

Commit c412673

Browse files
committed
Switch to pyproject.toml
1 parent 07a86bf commit c412673

File tree

2 files changed

+9
-7
lines changed

2 files changed

+9
-7
lines changed

web-apps/utils/pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
[project]
2+
name = "utils"
3+
version = "0.0.1"
4+
dependencies = [
5+
"pydantic",
6+
"structlog",
7+
]

web-apps/utils/setup.py

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
1-
from setuptools import setup, find_packages
1+
from setuptools import setup
22

3-
setup(
4-
name='web-app-utils',
5-
version='0.0.1',
6-
py_modules=["utils"],
7-
requires=["pydantic"]
8-
)
3+
setup()

0 commit comments

Comments
 (0)