From 68b33605cfe6313e22c95aa2e06cdd07f5358c9c Mon Sep 17 00:00:00 2001 From: eroux Date: Sat, 14 Jan 2023 16:39:12 +0100 Subject: [PATCH] adjustments, bump to 0.1.1 --- LICENSE | 2 +- README.md | 2 +- bophono/UnicodeToApi.py | 2 +- bophono/__init__.py | 2 +- setup.py | 4 +++- 5 files changed, 7 insertions(+), 5 deletions(-) diff --git a/LICENSE b/LICENSE index b25b0bb..501a341 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Elie Roux +Copyright (c) 2018-2023 Esukhia Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 9184e73..761c6e8 100644 --- a/README.md +++ b/README.md @@ -59,4 +59,4 @@ See [CHANGELOG.md](CHANGELOG.md). ## License -The Python code is Copyright (C) 2018 Esukhia, provided under [MIT License](LICENSE). See [CONTRIBUTORS.md](CONTRIBUTORS.md) for a list of authors and contributors. +The Python code is Copyright (C) 2018-2023 Esukhia, provided under [MIT License](LICENSE). See [CONTRIBUTORS.md](CONTRIBUTORS.md) for a list of authors and contributors. diff --git a/bophono/UnicodeToApi.py b/bophono/UnicodeToApi.py index 1993ba6..b2d3ba6 100644 --- a/bophono/UnicodeToApi.py +++ b/bophono/UnicodeToApi.py @@ -1,7 +1,7 @@ import sys import csv import os -from.sdtrie import * +from .sdtrie import * from .PhonStateMST import * from .PhonStateCAT import * from .PhonStateKVP import * diff --git a/bophono/__init__.py b/bophono/__init__.py index 0acf956..8149edf 100644 --- a/bophono/__init__.py +++ b/bophono/__init__.py @@ -4,4 +4,4 @@ from .PhonStateCAT import * from .apitochinese import * -VERSION = "0.1.0" +VERSION = "0.1.1" diff --git a/setup.py b/setup.py index 327584a..67e2257 100644 --- a/setup.py +++ b/setup.py @@ -6,6 +6,8 @@ import os import sys from setuptools import setup, find_packages +import setuptools +from pkg_resources import parse_version assert(parse_version(setuptools.__version__) >= parse_version("38.6.0")) @@ -14,7 +16,7 @@ def read(fname): setup( name="bophono", - version="0.1.0", #edit version in __init__.py + version="0.1.1", #edit version in __init__.py author="Esukhia development team", author_email="esukhiadev@gmail.com", description="Python utils for Tibetan phonetics in different dialects",