Skip to content

Commit

Permalink
Fix setuptools package discovery
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkKoz committed Nov 4, 2023
1 parent 2f9c505 commit 7f34e2a
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
from setuptools import setup
from setuptools import find_packages, setup

setup(
name='h2p_parser',
version='1.0.0',
packages=[''],
package_dir={'': 'h2p_parser'},
packages=find_packages(include=["h2p_parser*"]),
install_requires=['nltk', 'inflect'],
python_requires='>=3.7',
url='https://github.com/ionite34/h2p-parser',
Expand Down

0 comments on commit 7f34e2a

Please sign in to comment.