From 813c88ef8e0b23e3c6e3c28e6a94787904fa3422 Mon Sep 17 00:00:00 2001 From: Maximilian Moser <maximilian.moser@tuwien.ac.at> Date: Thu, 7 Dec 2023 11:52:32 +0100 Subject: [PATCH] Provide initial skeleton for the Python library --- .gitignore | 2 ++ README.md | 3 +++ pyproject.toml | 15 +++++++++++++++ tuw_vre_connector/__init__.py | 1 + 4 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 pyproject.toml create mode 100644 tuw_vre_connector/__init__.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ab35bec --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +**.pyc +**/__pycache__ diff --git a/README.md b/README.md index e69de29..254acf7 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,3 @@ +# TU Wien Virtual Research Environment Connector + +This Python library is intended to provide a simple API for fetching data from and publishing data to DBRepo and TU Wien Research Data. diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..361a1ed --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "tuw_vre_connector" +version = "0.1.0" +description = "Library for connecting the virtual research environment of TU Wien with its research data repositories" +authors = ["Maximilian Moser <maximilian.moser@tuwien.ac.at>", "Sotirios Tsepelakis <sotirios.tsepelakis@tuwien.ac.at>", "Martin Weise <martin.weise@tuwien.ac.at>"] +license = "MIT" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.8" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api" diff --git a/tuw_vre_connector/__init__.py b/tuw_vre_connector/__init__.py new file mode 100644 index 0000000..335ad73 --- /dev/null +++ b/tuw_vre_connector/__init__.py @@ -0,0 +1 @@ +"""Library for connecting VRE of TU Wien with the research data repositories.""" -- GitLab