Add pyproject.toml
Change-Id: I2b72d5527def9f5326612d97a8b20de3465d1cb5
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..36753a2
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,38 @@
+[project]
+name = "KorAPClient"
+version = "0.7.5.9000"
+description = "Client package to access KorAP's web service API"
+authors = [
+ {name = "Marc Kupietz",email = "kupietz@ids-mannheim.de"},
+]
+dependencies = [
+ "markdown",
+ "packaging",
+ "pandas>=1.2",
+ "rpy2>=3.3",
+]
+requires-python = ">=3.7"
+readme = "README.md"
+license = {text = "BSD"}
+classifiers = [
+ "Intended Audience :: Developers",
+ "Intended Audience :: Science/Research",
+ "License :: OSI Approved :: BSD License",
+ "Operating System :: OS Independent",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.10",
+ "Programming Language :: Python :: 3.11",
+ "Programming Language :: Python :: 3.12",
+ "Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+]
+[project.urls]
+Homepage = "https://www1.ids-mannheim.de/kl/projekte/korap.html"
+
+[build-system]
+requires = ["setuptools>=61", "wheel"]
+build-backend = "setuptools.build_meta"
+
+
+[tool.pdm]
+distribution = true