Skip to content

Commit

Permalink
Updated setup.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
Olcay Taner YILDIZ committed May 22, 2022
1 parent 374da0f commit 33222f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@

from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
long_description = (this_directory / "README.md").read_text(encoding="utf-8")
from Cython.Build import cythonize

setup(
ext_modules=cythonize(["WordToVec/*.pyx"],
compiler_directives={'language_level': "3"}),
name='NlpToolkit-WordToVec-Cy',
version='1.0.2',
version='1.0.3',
packages=['WordToVec'],
package_data={'WordToVec': ['*.pxd', '*.pyx', '*.c']},
url='https://github.com/StarlangSoftware/WordToVec-Cy',
Expand Down

0 comments on commit 33222f9

Please sign in to comment.