1
0
mirror of https://github.com/gsi-upm/senpy synced 2025-09-18 04:22:21 +00:00

Makefile for automated testing (no more drone)

This commit is contained in:
J. Fernando Sánchez
2016-09-20 20:55:59 +02:00
parent 0454fb1afe
commit 5d5de0bc50
8 changed files with 43 additions and 3 deletions

1
senpy/VERSION Normal file
View File

@@ -0,0 +1 @@
0.5.7

View File

@@ -18,4 +18,8 @@
Sentiment analysis server in Python
"""
__version__ = "0.5.6"
import os
VFILE = os.path.join(os.path.dirname(__file__), "VERSION")
with open(VFILE, 'r') as f:
__version__ = f.read().strip()