From 78db491727d7eec55e9457e53d24c1974959339f Mon Sep 17 00:00:00 2001 From: Tom Cornebize Date: Wed, 22 Apr 2020 14:47:22 +0200 Subject: [PATCH] Version 0.0.1 --- poetry.lock | 17 ++++++++++++++++- pyproject.toml | 1 + setup.py | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/poetry.lock b/poetry.lock index 67a8725..46f4a05 100644 --- a/poetry.lock +++ b/poetry.lock @@ -460,6 +460,17 @@ optional = false python-versions = "*" version = "0.1.7" +[[package]] +category = "main" +description = "A built-package format for Python" +name = "wheel" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +version = "0.34.2" + +[package.extras] +test = ["pytest (>=3.0.0)", "pytest-cov"] + [[package]] category = "dev" description = "Enable Unicode input and display when running Python from Windows console." @@ -470,7 +481,7 @@ python-versions = "*" version = "0.5" [metadata] -content-hash = "7e3a274ab04cc75cf6772668fd6885c196978d090e0605e871dae66152c44948" +content-hash = "4d710acf69415c2f6d392a18be659333d94cb9c8fa24a082e7893102c4e49525" python-versions = ">= 3.5" [metadata.files] @@ -853,6 +864,10 @@ wcwidth = [ {file = "wcwidth-0.1.7-py2.py3-none-any.whl", hash = "sha256:f4ebe71925af7b40a864553f761ed559b43544f8f71746c2d756c7fe788ade7c"}, {file = "wcwidth-0.1.7.tar.gz", hash = "sha256:3df37372226d6e63e1b1e1eda15c594bca98a22d33a23832a90998faa96bc65e"}, ] +wheel = [ + {file = "wheel-0.34.2-py2.py3-none-any.whl", hash = "sha256:df277cb51e61359aba502208d680f90c0493adec6f0e848af94948778aed386e"}, + {file = "wheel-0.34.2.tar.gz", hash = "sha256:8788e9155fe14f54164c1b9eb0a319d98ef02c160725587ad60f14ddc57b6f96"}, +] win-unicode-console = [ {file = "win_unicode_console-0.5.zip", hash = "sha256:d4142d4d56d46f449d6f00536a73625a871cba040f0bc1a2e305a04578f07d1e"}, ] diff --git a/pyproject.toml b/pyproject.toml index 0a984bd..d6a0560 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ colorlog = "^4.0" PyYAML = "^5.1" lxml = "^4.4" cashew = { file = "cashew-0.0.0-py3-none-any.whl" } +wheel = "^0.34.2" [tool.poetry.dev-dependencies] ipython = "^7.7" diff --git a/setup.py b/setup.py index 64f80ae..b2beaae 100755 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup import subprocess -VERSION = '0.0.0' +VERSION = '0.0.1' class CommandError(Exception):