summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2021-04-30 06:34:10 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2021-04-30 05:59:37 +0000
commitb15e81fc1ed78ef9c4dc2ac890e1ff99c62e9ed0 (patch)
tree3d41afe9fcfa1c100eb856ac16cb2dcc741f4219
parentc682706527f295a7f5c90d33a5f83e14e14baceb (diff)
downloadgobject-introspection-b15e81fc1ed78ef9c4dc2ac890e1ff99c62e9ed0.tar.gz
Add poetry support
-rw-r--r--.gitignore1
-rw-r--r--pyproject.toml17
2 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 6b29f6f0..5c221193 100644
--- a/.gitignore
+++ b/.gitignore
@@ -85,3 +85,4 @@ Makefile.in
*.pyd
*.dll.a
.coverage
+poetry.lock \ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
index 830e77af..52a973e2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,2 +1,19 @@
+[tool.poetry]
+name = "PyGObject"
+version = "3.41.0"
+description = "Python bindings for GObject Introspection"
+authors = ["Christoph Reiter"]
+
+[tool.poetry.dependencies]
+python = "^3.6"
+pycairo = "^1.16"
+
+[tool.poetry.dev-dependencies]
+pytest = "^6.0.0"
+flake8 = "^3.9.1"
+Sphinx = "^3.5.4"
+sphinx-rtd-theme = "^0.5.2"
+coverage = "^5.5"
+
[build-system]
requires = ["setuptools", "wheel", "pycairo"]