Skip to content

Commit

Permalink
Merge pull request #5 from proger/installable
Browse files Browse the repository at this point in the history
make pip install -e . work
  • Loading branch information
dchaplinsky authored Aug 20, 2022
2 parents 94aaa0f + 9619a3e commit 21ab40f
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 0 deletions.
File renamed without changes.
7 changes: 7 additions & 0 deletions ipa_uk/__main__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import sys
from ipa_uk import ipa


for word in sys.stdin:
word = word.rstrip()
print(word, ipa(word, check_accent=False))
10 changes: 10 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[project]
name = "ipa-uk"
version = "0.0.1"

[tool.setuptools]
packages = ["ipa_uk"]

[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

0 comments on commit 21ab40f

Please sign in to comment.