Skip to content

Commit 30cc781

Browse files
committed
Enable editable installation
1 parent 065de25 commit 30cc781

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ mypy = "^0.910"
2323
types-psycopg2 = "^2.9.1"
2424

2525
[build-system]
26-
requires = ["poetry-core>=1.0.0"]
26+
requires = ["setuptools", "poetry-core>=1.0.0"]
2727
build-backend = "poetry.core.masonry.api"
2828

2929
[tool.coverage.run]

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
name = message-db

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env python
2+
3+
import setuptools
4+
5+
if __name__ == "__main__":
6+
setuptools.setup()

0 commit comments

Comments
 (0)