diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000000000000000000000000000000000000..a238d5698bdb9639b89546e7cff96e478d8a59f1
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1 @@
+'random','argparse 1.4.0', 'check_positive', 'arghelper 0.4.2', 'fragmentation_v2', 'numpy 1.23.4', 'pandas 1.5'
\ No newline at end of file
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..e80689409443d32ce98584d666922640f2bce1d7
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,20 @@
+"""Set up project."""
+from setuptools import setup, find_packages
+from pathlib import Path
+project_root_dir = Path(__file__).parent.resolve()
+with open(project_root_dir / "requirements.txt",
+          "r", encoding="utf-8") as _file:
+    INSTALL_REQUIRES = _file.read().splitlines()
+
+
+setup(
+    name='terminal-fragment-selection',
+    version='0.1.1',
+    url='https://git.scicore.unibas.ch/zavolan_group/tools/terminal-fragment-selector',
+    license='MIT',
+    author='Hugo Madge Leon, Sunho Kim, Tanya Nandan',
+    author_email='hmadge@ethz.ch',
+    description='Terminal fragment selector',
+    packages=find_packages(),
+    install_requires=INSTALL_REQUIRES
+)