diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-09-27 10:53:01 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-09-27 10:53:01 +0800 |
commit | cf9399883e46127d939bac2d12a93088bf3a4d95 (patch) | |
tree | 278ea1b0f80fcd5a2f80bb17b07a4140d269e7fb | |
parent | 680fb90a892290f855c37fd2bf4f3c31a55baa81 (diff) | |
download | fg21sim-cf9399883e46127d939bac2d12a93088bf3a4d95.tar.bz2 |
__init__.py: add __url__ and minor fix
-rw-r--r-- | fg21sim/__init__.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/fg21sim/__init__.py b/fg21sim/__init__.py index 38cb565..1ea6cf7 100644 --- a/fg21sim/__init__.py +++ b/fg21sim/__init__.py @@ -11,10 +11,9 @@ __version__ = "0.0.1" __author__ = "Weitian LI" __license__ = "MIT" __copyright__ = "Copyright (c) 2016 Weitian LI" +__url__ = "https://github.com/liweitianux/fg21sim" -from .core import hmm - # Set default logging handle to avoid "No handler found" warnings. import logging from logging import NullHandler |