Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/setup.py b/setup.py 2index 245c1dd..fdc17ab 100755 3--- a/setup.py 4+++ b/setup.py 5@@ -7,16 +7,12 @@ from mnamer.__version__ import VERSION 6 with open("readme.md", "r", encoding="utf8") as fp: 7 LONG_DESCRIPTION = fp.read() 8 9-with open("requirements.txt", "r", encoding="utf8") as fp: 10- REQUIREMENTS = fp.read().splitlines() 11- 12 setup( 13 author="Jessy Williams", 14 author_email="jessy@jessywilliams.com", 15 description="A media file organiser", 16 entry_points={"console_scripts": ["mnamer=mnamer.__main__:main"]}, 17 include_package_data=True, 18- install_requires=REQUIREMENTS, 19 license="MIT", 20 long_description=LONG_DESCRIPTION, 21 long_description_content_type="text/markdown",