Skip to content
Snippets Groups Projects
Commit 84638d38 authored by Cyril Moineau's avatar Cyril Moineau Committed by Maxence Naud
Browse files

Add back use of project_name.txt in setup.py

parent 239b472c
No related branches found
No related tags found
2 merge requests!318[Upd] release verision 0.5.0,!277Remove scm
...@@ -10,7 +10,11 @@ from setuptools import setup, Extension ...@@ -10,7 +10,11 @@ from setuptools import setup, Extension
from setuptools.command.build_ext import build_ext from setuptools.command.build_ext import build_ext
PROJECT_NAME = "aidge_core" def get_project_name() -> str:
return open(pathlib.Path().absolute() / "project_name.txt", "r").read().strip()
PROJECT_NAME = get_project_name()
SETUP_DIR = pathlib.Path(__file__).parent SETUP_DIR = pathlib.Path(__file__).parent
......
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