diff --git a/README.md b/README.md index e8c65d9..46a4985 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,14 @@ -# Apple Splash Screen Maker -![Preview](preview.png) \ No newline at end of file +## Apple Splash Screen Maker + +![](https://img.shields.io/pypi/v/assm?style=for-the-badge) ![](https://img.shields.io/pypi/l/assm?style=for-the-badge) ![](https://img.shields.io/github/languages/code-size/emilecok/assm?style=for-the-badge) + +## Usage and Examples +Install package +``` sh +pip install assm +``` + +Usage +``` sh +python3 -m assm +``` diff --git a/pyproject.toml b/pyproject.toml index 8a6ef43..627217b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,10 +7,24 @@ module = "assm" author = "Alexander Popov" author-email = "iiiypuk@iiiypuk.me" home-page = "https://github.com/emilecok/assm" -requires-python = ">=3" requires = ["Pillow==8.1.0" ] +description-file = "README.md" classifiers = [ "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3" ] -description-file = "README.md" +requires-python = ">=3" +keywords = [ + "iOS", + "splashscreen", + "splash-screen" +] + +[tool.flit.metadata.requires-extra] +dev = ["pylint == 2.7.1", "black == 20.8b1"] + +[tool.flit.metadata.urls] +Documentation = "" + +[tool.black] +line-length = 99