Skip to content
Snippets Groups Projects
Commit 3ed9c012 authored by Valerio Mariani's avatar Valerio Mariani
Browse files

Fixed bug in setup.py install

parent c98a1df8
No related branches found
No related tags found
No related merge requests found
...@@ -13,12 +13,13 @@ ...@@ -13,12 +13,13 @@
# #
# Copyright 2014-2018 Deutsches Elektronen-Synchrotron DESY, # Copyright 2014-2018 Deutsches Elektronen-Synchrotron DESY,
# a research centre of the Helmholtz Association. # a research centre of the Helmholtz Association.
# pylint: disable=invalid-name,missing-docstring
from __future__ import absolute_import, division, print_function, unicode_literals from __future__ import absolute_import, division, print_function, unicode_literals
from setuptools import setup from setuptools import setup
version_fh = open("onda/__init__.py", "r") version_fh = open("cfelpyutils/__init__.py", "r")
version = version_fh.readlines()[-1].split("=")[1].strip().split('"')[1] version = version_fh.readlines()[-1].split("=")[1].strip().split('"')[1]
version_fh.close() version_fh.close()
......
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