diff options
| author | 2020-06-10 02:21:52 +0000 | |
|---|---|---|
| committer | 2020-06-10 02:21:52 +0000 | |
| commit | ac0d12e3e1b9a9a309f8fbde9ccbdb9f9743800f (patch) | |
| tree | 524cef8100ab09ad0c89e49d9151c38bda96eee8 | |
| parent | a783f397627532a8491676670ca914f1c3299227 (diff) | |
poetry: Init
| -rw-r--r-- | poetry.lock | 66 | ||||
| -rw-r--r-- | pyproject.toml | 16 |
2 files changed, 82 insertions, 0 deletions
diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..87ee986 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,66 @@ +[[package]] +category = "main" +description = "File support for asyncio." +name = "aiofiles" +optional = false +python-versions = "*" +version = "0.5.0" + +[[package]] +category = "main" +description = "A base16 colorscheme builder for Python" +name = "pybase16-builder" +optional = false +python-versions = ">=3.5" +version = "0.2.6" + +[package.dependencies] +aiofiles = "*" +pystache = "*" +pyyaml = "*" + +[[package]] +category = "main" +description = "Mustache for Python" +name = "pystache" +optional = false +python-versions = "*" +version = "0.5.4" + +[[package]] +category = "main" +description = "YAML parser and emitter for Python" +name = "pyyaml" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +version = "5.3.1" + +[metadata] +content-hash = "fd5d4380a1cd47fe848c75e9ad3720d7c9fca41144b4c843b04cc28dbae7c190" +python-versions = "^3.8" + +[metadata.files] +aiofiles = [ + {file = "aiofiles-0.5.0-py3-none-any.whl", hash = "sha256:377fdf7815cc611870c59cbd07b68b180841d2a2b79812d8c218be02448c2acb"}, + {file = "aiofiles-0.5.0.tar.gz", hash = "sha256:98e6bcfd1b50f97db4980e182ddd509b7cc35909e903a8fe50d8849e02d815af"}, +] +pybase16-builder = [ + {file = "pybase16-builder-0.2.6.tar.gz", hash = "sha256:20b2ca5bfc62b2bcad857a505b87b35d30bff242a5b8cd2423dadb54a1e52244"}, + {file = "pybase16_builder-0.2.6-py3-none-any.whl", hash = "sha256:0e3687ed7687ceff5bba31c3efc5c77ac29b1d875f8d0bc2ff074405999cb3c9"}, +] +pystache = [ + {file = "pystache-0.5.4.tar.gz", hash = "sha256:f7bbc265fb957b4d6c7c042b336563179444ab313fb93a719759111eabd3b85a"}, +] +pyyaml = [ + {file = "PyYAML-5.3.1-cp27-cp27m-win32.whl", hash = "sha256:74809a57b329d6cc0fdccee6318f44b9b8649961fa73144a98735b0aaf029f1f"}, + {file = "PyYAML-5.3.1-cp27-cp27m-win_amd64.whl", hash = "sha256:240097ff019d7c70a4922b6869d8a86407758333f02203e0fc6ff79c5dcede76"}, + {file = "PyYAML-5.3.1-cp35-cp35m-win32.whl", hash = "sha256:4f4b913ca1a7319b33cfb1369e91e50354d6f07a135f3b901aca02aa95940bd2"}, + {file = "PyYAML-5.3.1-cp35-cp35m-win_amd64.whl", hash = "sha256:cc8955cfbfc7a115fa81d85284ee61147059a753344bc51098f3ccd69b0d7e0c"}, + {file = "PyYAML-5.3.1-cp36-cp36m-win32.whl", hash = "sha256:7739fc0fa8205b3ee8808aea45e968bc90082c10aef6ea95e855e10abf4a37b2"}, + {file = "PyYAML-5.3.1-cp36-cp36m-win_amd64.whl", hash = "sha256:69f00dca373f240f842b2931fb2c7e14ddbacd1397d57157a9b005a6a9942648"}, + {file = "PyYAML-5.3.1-cp37-cp37m-win32.whl", hash = "sha256:d13155f591e6fcc1ec3b30685d50bf0711574e2c0dfffd7644babf8b5102ca1a"}, + {file = "PyYAML-5.3.1-cp37-cp37m-win_amd64.whl", hash = "sha256:73f099454b799e05e5ab51423c7bcf361c58d3206fa7b0d555426b1f4d9a3eaf"}, + {file = "PyYAML-5.3.1-cp38-cp38-win32.whl", hash = "sha256:06a0d7ba600ce0b2d2fe2e78453a470b5a6e000a985dd4a4e54e436cc36b0e97"}, + {file = "PyYAML-5.3.1-cp38-cp38-win_amd64.whl", hash = "sha256:95f71d2af0ff4227885f7a6605c37fd53d3a106fcab511b8860ecca9fcf400ee"}, + {file = "PyYAML-5.3.1.tar.gz", hash = "sha256:b8eac752c5e14d3eca0e6dd9199cd627518cb5ec06add0de9d32baeee6fe645d"}, +] diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..b8d2736 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,16 @@ +[tool.poetry] +name = "base16-zathura" +version = "0.1.0" +description = "A project profile for working with base16 schemes" +authors = ["Rohit Goswami <rgoswami@ieee.org>"] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.8" +pybase16-builder = "^0.2.6" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" |
