From 2e25f079d1172bc2cc3cad8e6cbd30bcaa6c43b2 Mon Sep 17 00:00:00 2001
From: "r.jaepel" <r.jaepel@fz-juelich.de>
Date: Mon, 28 Aug 2023 16:02:31 +0200
Subject: [PATCH] prepare for pypi and fix gitpython version error

---
 .gitignore     | 3 ++-
 pyproject.toml | 3 +++
 setup.cfg      | 6 +++---
 3 files changed, 8 insertions(+), 4 deletions(-)
 create mode 100644 pyproject.toml

diff --git a/.gitignore b/.gitignore
index 83e4d9b..06bcb28 100644
--- a/.gitignore
+++ b/.gitignore
@@ -4,4 +4,5 @@ build
 results
 __pycache__
 tests/test_repo
-.coverage
\ No newline at end of file
+.coverage
+dist
\ No newline at end of file
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..8cf3256
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
+requires = ["setuptools>=61.0"]
+build-backend = "setuptools.build_meta"
\ No newline at end of file
diff --git a/setup.cfg b/setup.cfg
index 40a7bd7..64a501b 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -6,9 +6,9 @@ author_email = r.jaepel@fz-juelich.de
 description = A solution for research data management
 long_description = file: README.md
 long_description_content_type = text/markdown
-url = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/ModsimDataTool
+url = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-RDM
 project_urls =
-    Bug Tracker = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/ModsimDataTool/Issues
+    Bug Tracker = https://jugit.fz-juelich.de/IBG-1/ModSim/cadet/CADET-RDM/Issues
 classifiers =
     Programming Language :: Python :: 3
     License :: OSI Approved :: GNU General Public License v3 (GPLv3)
@@ -18,7 +18,7 @@ classifiers =
 packages = find:
 python_requires = >=3.8
 install_requires =
-    gitpython
+    gitpython>=3.1
     git-lfs
     click
 
-- 
GitLab