Skip to content

Commit

Permalink
refs #1
Browse files Browse the repository at this point in the history
  • Loading branch information
Koziev committed Feb 20, 2020
1 parent acc0147 commit c5d0ea4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build status](https://travis-ci.org/Koziev/rusyllab.svg?master)](https://travis-ci.org/Koziev)

Simple Python package for breaking Russian words into syllables.
Simple Python 2/3 package for breaking Russian words into syllables.

## Installation

Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,17 @@
import io
import setuptools

with open("README.md", "r") as fh:
with io.open("README.md", mode="r", encoding='utf-8') as fh:
long_description = fh.read()

setuptools.setup(
name="rusyllab",
version="0.0.3",
version="0.0.4",
author="Ilya Koziev",
author_email="[email protected]",
description="Simple Python package for breaking Russian words into syllables",
long_description=long_description,
long_description_content_type="text/markdown",
#long_description=long_description,
#long_description_content_type="text/markdown",
url="https://github.com/Koziev/rusyllab",
packages=setuptools.find_packages(),
)

0 comments on commit c5d0ea4

Please sign in to comment.