Skip to content
Snippets Groups Projects
Commit 6ba74753 authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

Revert "chore : refactor"

This reverts commit f982c0b7.
parent f982c0b7
No related branches found
No related tags found
2 merge requests!212Version 0.3.0,!116feat/release_pip
......@@ -17,6 +17,13 @@ third_party_dependencies = ["numpy>=1.21.6", "Jinja2>=3.1.2"]
aidge_optional_dependencies = {"test": ["pytest"]}
def clean_eggs():
eggs_dir = ".eggs"
if os.path.isdir(eggs_dir):
shutil.rmtree(eggs_dir)
print(f"Removed {eggs_dir} directory")
class CMakeExtension(Extension):
def __init__(self, name):
super().__init__(name, sources=[])
......@@ -86,13 +93,6 @@ class CMakeBuild(build_ext):
shutil.copy(currentFile, str(aidge_package.absolute()))
def clean_eggs():
eggs_dir = ".eggs"
if os.path.isdir(eggs_dir):
shutil.rmtree(eggs_dir)
print(f"Removed {eggs_dir} directory")
if __name__ == "__main__":
setup(
name="aidge_core",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment