Skip to content

Commit

Permalink
v0.0.7
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Schopf <tim.schopf@t-online.de>
  • Loading branch information
TimSchopf committed Feb 14, 2022
1 parent c5e1df8 commit 6289343
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,11 @@

ver_path = convert_path('requirements.txt')
with open(ver_path) as ver_file:
base_packages = ver_file.readlines()

base_packages = [base_package.strip() for base_package in base_packages]
base_packages = ver_file.read().splitlines()

ver_path = convert_path('tests/requirements.txt')
with open(ver_path) as ver_file:
test_packages = ver_file.readlines()

test_packages = [test_package.strip() for test_package in test_packages]
test_packages = ver_file.read().splitlines()

setuptools.setup(
name='keyphrase-vectorizers',
Expand Down Expand Up @@ -49,4 +45,5 @@
package_dir={"": "."},
packages=setuptools.find_packages(where="."),
python_requires='>=3.7',
data_files=[('requirements', ['requirements.txt', 'tests/requirements.txt', 'docs/requirements.txt'])],
)

0 comments on commit 6289343

Please sign in to comment.