diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000..fbd11d1
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+MIT License
+
+Copyright (c) 2018 Etienne Napoleone
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+SOFTWARE.
diff --git a/README.md b/README.md
index 770f057..66f7668 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# scrmbl
-🕵️ Library for "scambled" printing in terminal
+🕵️ Library for "scrambled" printing in terminal
![demo gif](https://raw.githubusercontent.com/etienne-napoleone/scrmbl/develop/demo.gif)
diff --git a/pyproject.toml b/pyproject.toml
index 01f8f42..bc1a443 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,8 +1,14 @@
[tool.poetry]
name = "scrmbl"
-version = "0.1.0"
-description = ""
-authors = ["etienne-napoleone "]
+version = "0.1.1"
+description = "Library for scrambled printing in terminal"
+authors = ["Etienne Napoleone "]
+readme = "README.md"
+license = "MIT"
+homepage = "https://github.com/etienne-napoleone/scrmbl"
+repository = "https://github.com/etienne-napoleone/scrmbl"
+documentation = "https://github.com/etienne-napoleone/scrmbl/blob/master/README.md"
+keywords = ["print", "library", "movie", "action", "scramble"]
[tool.poetry.dependencies]
python = "^3.5"
diff --git a/scrmbl/__init__.py b/scrmbl/__init__.py
index 39d0083..4e7309b 100644
--- a/scrmbl/__init__.py
+++ b/scrmbl/__init__.py
@@ -3,4 +3,4 @@
__all__ = ['echo', 'charsets']
-__version__ = '0.1.0'
+__version__ = '0.1.1'
diff --git a/tests/test_scrmbl.py b/tests/test_scrmbl.py
index b0c81d6..bb6c912 100644
--- a/tests/test_scrmbl.py
+++ b/tests/test_scrmbl.py
@@ -3,7 +3,7 @@
def test_version():
- assert __version__ == '0.1.0'
+ assert __version__ == '0.1.1'
def test_echo_single(capsys):