Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • zavolan_group/tools/transcript-structure-generator
1 result
Show changes
Commits on Source (2)
"""Set up project.""" """Set up project."""
from pathlib import Path from pathlib import Path
from setuptools import setup, find_packages # type: ignore from setuptools import setup, find_packages
project_root_dir = Path(__file__).parent.resolve() project_root_dir = Path(__file__).parent.resolve()
with open(project_root_dir / "requirements.txt", with open(project_root_dir / "requirements.txt",
...@@ -16,7 +16,7 @@ setup( ...@@ -16,7 +16,7 @@ setup(
url=URL, url=URL,
license='MIT', license='MIT',
author='Larissa Glass, Michael Zimmermann, Andri Fraenkl', author='Larissa Glass, Michael Zimmermann, Andri Fraenkl',
author_email='michael.zimmermann@unibas.ch', author_email='mate.balajti@unibas.ch',
description='Transcript structure generator', description='Transcript structure generator',
packages=find_packages(), packages=find_packages(),
install_requires=INSTALL_REQUIRES, install_requires=INSTALL_REQUIRES,
......