From 5fdfa5ae19f5c59f3d018119f5d0b438cd0ac39c Mon Sep 17 00:00:00 2001 From: Lorenzo Zolfanelli <lorenzo.zolfanelli@espci.psl.eu> Date: Thu, 18 Jan 2024 16:49:58 +0100 Subject: [PATCH] chore: fork-related cleanup --- CONTRIBUTING.md | 2 +- CONTRIBUTORS.txt | 9 +++++++-- MANIFEST.in | 6 ------ docs | 1 - requirements.txt | 4 ---- test.py | 6 ------ 6 files changed, 8 insertions(+), 20 deletions(-) delete mode 100644 MANIFEST.in delete mode 160000 docs delete mode 100644 requirements.txt delete mode 100644 test.py diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8b34716..b93b072 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ # Contributing to nd2reader -We welcome feature proposals and improvements to the library from anyone. If you just have an idea, you can open an [issue](https://github.com/rbnvrw/nd2reader/issues) for +We welcome feature proposals and improvements to the library from anyone. If you just have an idea, you can open an [issue](https://gitlab.pasteur.fr/zolfa/zolfa-nd2reader/-/issues) for discussion, or get in touch with Ruben Verweij. If you already wrote some code or made changes, simply open a pull request. diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 363b9f5..b6c8d41 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -1,6 +1,11 @@ +Author: Lorenzo Zolfanelli <lorenzo.zolfanelli@espci.psl.eu> + +zolfa-nd2reader is a fork of nd2reader originally maintained by Ruben Verweij (https://github.com/Open-Science-Tools/nd2reader). +This fork is maintained by Lorenzo Zolfanelli. + +Original CONTRIBUTORS from the Ruben fork: + Author: Jim Rybarski <jim@rybarski.com> nd2reader is based on the read_nd2 module from the SLOTH library (http://pythonhosted.org/SLOTH/_modules/sloth/read_nd2.html). Thanks to M.Kauer and B.Kauer for solving the hardest part of parsing ND2s. - -This fork is maintained by Ruben Verweij. \ No newline at end of file diff --git a/MANIFEST.in b/MANIFEST.in deleted file mode 100644 index c064323..0000000 --- a/MANIFEST.in +++ /dev/null @@ -1,6 +0,0 @@ -include MANIFEST.in -include setup.py -include setup.cfg -include README.md -include LICENSE -include COPYING diff --git a/docs b/docs deleted file mode 160000 index 42dbfdf..0000000 --- a/docs +++ /dev/null @@ -1 +0,0 @@ -Subproject commit 42dbfdf18e0ed7656ef73ac66e889c3138ef756f diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index b8ab71a..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -numpy>=1.14 -six>=1.4 -xmltodict>=0.9.2 -pims>=0.3.0 diff --git a/test.py b/test.py deleted file mode 100644 index b05602c..0000000 --- a/test.py +++ /dev/null @@ -1,6 +0,0 @@ -import nose -from os import path - -file_path = path.abspath(__file__) -tests_path = path.join(path.abspath(path.dirname(file_path)), "tests") -nose.main(argv=[path.abspath(__file__), "--with-coverage", "--cover-erase", "--cover-package=zolfa.nd2reader", tests_path]) -- GitLab