Skip to content

Commit

Permalink
configure release
Browse files Browse the repository at this point in the history
  • Loading branch information
faisaladnanpeltops committed Sep 17, 2024
1 parent 2473d76 commit 50aeaf1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include VERSION
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
5.4.0
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import nlu

from codecs import open
from os import path

Expand All @@ -10,6 +8,10 @@
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()

# Get the version from file
with open(path.join(here, 'VERSION')) as version_file:
version = f"{version_file.read().strip()}"

REQUIRED_PKGS = [
'spark-nlp>=5.0.2',
'numpy',
Expand All @@ -22,7 +24,7 @@

name='nlu',

version=nlu.version(),
version=version,

description='John Snow Labs NLU provides state of the art algorithms for NLP&NLU with 20000+ of pretrained models in 200+ languages. It enables swift and simple development and research with its powerful Pythonic and Keras inspired API. It is powerd by John Snow Labs powerful Spark NLP library.',

Expand Down

0 comments on commit 50aeaf1

Please sign in to comment.