diff --git a/setup.py b/setup.py index 21a2fa248ad3c02d6614d7f5565fe823461a9103..3fe12debd8988acce22bf44e9f942c2051348894 100644 --- a/setup.py +++ b/setup.py @@ -1,18 +1,19 @@ """Set up project.""" -from setuptools import setup, find_packages from pathlib import Path +from setuptools import setup, find_packages project_root_dir = Path(__file__).parent.resolve() with open(project_root_dir / "requirements.txt", "r", encoding="utf-8") as f: INSTALL_REQUIRES = f.read().splitlines() -url = 'https://git.scicore.unibas.ch/zavolan_group/tools/terminal-fragment-selector' +URL = ('https://git.scicore.unibas.ch/zavolan_group/' + 'tools/terminal-fragment-selector') setup( name='terminal-fragment-selector', version='0.1.1', - url=url, + url=URL, license='MIT', author='Hugo Madge Leon, Sunho Kim, Tanya Nandan', author_email='hmadge@ethz.ch', diff --git a/tests/test_cli.py b/tests/test_cli.py index 4ffe56aa4c4a9dfc43f195c305dc4ada3e89536d..ca946126c84e1328e0a42de24151efb49fb742f8 100644 --- a/tests/test_cli.py +++ b/tests/test_cli.py @@ -27,5 +27,5 @@ def test_file(): def test_main(): """Test main() function.""" - with pytest.raises(TypeError): - main("") + with pytest.raises(SystemExit): + main()