diff --git a/setup.py b/setup.py index 3199a1f..be5f82f 100644 --- a/setup.py +++ b/setup.py @@ -17,14 +17,6 @@ if os.path.isfile(requirements_path): with open(requirements_path) as f: requirements = f.read().splitlines() -class PostInstallCommand(install): - """Post-installation for installation mode.""" - def run(self): - print("RUNNING POST INSTALL 1") - install.run(self) - print("RUNNING POST INSTALL") - download_data() - setuptools.setup( name="genies-benchmark", @@ -40,12 +32,9 @@ setuptools.setup( "License :: MIT License", "Operating System :: OS Independent", ], - cmdclass={ - 'install': PostInstallCommand, - }, python_requires='>=3.10', install_requires=requirements, packages=find_packages(where='src'), # Specify 'src' as the root package_dir={'': 'src'}, package_data={'genies-benchmark': ['LICENCE', 'requirements.txt']}, -) \ No newline at end of file +)