Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
bugface committed Nov 7, 2023
1 parent 2b37ebc commit b4efa97
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@


def get_requirements():
ret = [x for x in requires.split("\n") if len(x)>0]
ret = [x for x in requires.split("\n") if len(x) > 0]
return ret


setuptools.setup(
name = 'NLPreprocessing',
version = '1.0.0',
description = "NLP package for text preprocessing",
name="NLPreprocessing",
version="1.0.1",
description="NLP package for text preprocessing",
url="https://github.com/uf-hobi-informatics-lab/NLPreprocessing",
python_requires=">=3.6.0",
install_requires=get_requirements(),
packages=["nlpreprcessing"] + setuptools.find_packages('nlpreprcessing'),
packages=["nlpreprcessing"] + setuptools.find_packages("nlpreprcessing"),
include_package_data=True,
author="hobi",
)

0 comments on commit b4efa97

Please sign in to comment.