1
0
mirror of https://github.com/TREX-CoE/trexio.git synced 2024-08-25 06:31:43 +02:00

do not reveal paths to trexio (security concerns)

This commit is contained in:
q-posev 2021-09-12 13:36:24 +02:00
parent 12dd1fd8dc
commit d060808467

View File

@ -100,9 +100,10 @@ PYTREXIO_MAX_STR_LENGTH = 2048
# setuptools do not assign __version__ variable to the trexio package, so we set it manually
from os import path
__trexio_path__ = path.dirname(path.abspath(__file__))
__pytrexio_path__ = path.join(__trexio_path__, 'pytrexio')
with open(path.join(__pytrexio_path__, '_version.py')) as version_file:
with open(path.join(path.join(__trexio_path__, 'pytrexio'), '_version.py')) as version_file:
__version__ = version_file.read().split('"')[1]
__trexio_path__ = None
#+end_src
* Coding conventions