BibReview 0.2

BibReview est un logiciel de gestion de base bibliographique. Voici la dernière version 0.2. Cette version fixe plusieurs problèmes liées à la fusion de bases de langues différentes. Elle est désormais disponible sur PyPI : https://pypi.python.org/pypi/BibReview !

Comment by Lukas Huber (Fri 04 Dec 2015 11:33:50 AM)

Hi,

I just noticed that the setup.py is causing some troubles on OSX.

if os.name == "posix":

for mo_file in glob.glob(os.path.abspath(os.path.join(HERE, "locale",

"*", "LC_MESSAGES", "*.mo"))):

lang = os.path.dirname(mo_file).split(os.sep)[-2] data_files.append( (os.path.join("/", "usr", "share", "locale", lang,

"LC_MESSAGES"), [mo_file]) ) else:

package_data["bibreview"].append("locale///*.mo")

tries to create /usr/share/locale/en which is not possible unfortunately.

As I can not program python, it would be nice if you could provide any guidance or fix to this strange issue.

Kind Regards Lukas