diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8b3471659ca1cd21a7989aa1f1767b7f8ede5b57..b93b07265689d696b33cc0223d92b09c859122b4 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 363b9f5afcba78d75ca58fc9a996d28d30fe4917..b6c8d4136fb962c74dc3f121aff28a6e8c9360c0 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 c064323654d5607c63d59b19ef4b3e9a3b39e059..0000000000000000000000000000000000000000
--- 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 42dbfdf18e0ed7656ef73ac66e889c3138ef756f..0000000000000000000000000000000000000000
--- a/docs
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 42dbfdf18e0ed7656ef73ac66e889c3138ef756f
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index b8ab71ab540bb1e0d79526719dc88dd2b097642a..0000000000000000000000000000000000000000
--- 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 b05602cab30656da3822f054436b4e7d58b05ea7..0000000000000000000000000000000000000000
--- 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])