Skip to content
Snippets Groups Projects
Commit 9773a0e9 authored by Hugo Madge Leon's avatar Hugo Madge Leon
Browse files

new setup.py

parent 4cc49fb6
No related branches found
No related tags found
1 merge request!35new setup.py
setup.py 0 → 100644
"""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
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment