From 9773a0e9090ae9dfa4623f07874ff54b0f09da18 Mon Sep 17 00:00:00 2001 From: "hugo.madgeleon" <hugo.madgeleon@stud.unibas.ch> Date: Fri, 9 Dec 2022 16:49:15 +0100 Subject: [PATCH] new setup.py --- requirements.txt | 1 + setup.py | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 requirements.txt create mode 100644 setup.py diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a238d56 --- /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 0000000..e806894 --- /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 +) -- GitLab