Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Prevent vi3k6i5#58.
  • Loading branch information
avsolatorio authored Mar 24, 2022
1 parent 6ddfbe4 commit 451fd24
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,11 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this file, You
# can obtain one at http://mozilla.org/MPL/2.0/.

import setuptools
from setuptools import setup
from Cython.Build import cythonize

setuptools.setup(
setup(
setup_requires=['pbr'],
pbr=True
pbr=True,
ext_modules = cythonize("guidedlda/_guidedlda.pyx")
)

0 comments on commit 451fd24

Please sign in to comment.