From 724fc62925c88269350a93db208d0a4b4da3aa48 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 5 Apr 2022 10:12:15 +0800 Subject: [PATCH] setup.py: stop checking for dependencies --- setup.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/setup.py b/setup.py index 60304d724..b43d3a6f1 100755 --- a/setup.py +++ b/setup.py @@ -10,16 +10,6 @@ if sys.version_info[:2] < (3, 9): raise Exception("You need Python 3.9+") -# Depends on PyQt5, but setuptools cannot check for it. -requirements = [ - "numpy", "scipy", - "python-dateutil", "prettytable", "h5py", - "qasync", "pyqtgraph", "pygit2", - # FIXME: figure out how to get the setuptools crap to find nac3artiq. Python imports it just fine. - # See: https://github.com/PyO3/setuptools-rust - # Alternatively, stop using setuptools, it sucks. -] - console_scripts = [ "artiq_client = artiq.frontend.artiq_client:main", "artiq_compile = artiq.frontend.artiq_compile:main", @@ -66,8 +56,6 @@ Programming Language :: Python :: 3.9 Topic :: Scientific/Engineering :: Physics Topic :: System :: Hardware """.splitlines(), - install_requires=requirements, - extras_require={}, packages=find_packages(), namespace_packages=[], include_package_data=True,