Skip to content

Commit

Permalink
add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
kosti4ka committed Sep 26, 2020
1 parent 1114631 commit 137dcc6
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
30 changes: 30 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import os
from setuptools import setup


def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()


setup(
name="ukro_g2t_pytorch",
version="0.1",
author="Kostiantyn Pylypenko",
author_email="k.pylypenko@hotmail.com",
description="NN based grapheme to phoneme model for Ukrainian language",
license="MIT",
keywords="Ukrainian grapheme to phoneme",
url="https://github.com/kosti4ka/ukro_g2p",
packages=['ukro_g2p'],
long_description=read('README'),
classifiers=[
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)
1 change: 1 addition & 0 deletions ukro_g2p/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = "0.1"

0 comments on commit 137dcc6

Please sign in to comment.