From e74082be27f547312f37230b8f741c0b430abe52 Mon Sep 17 00:00:00 2001 From: Tanner Collin Date: Wed, 21 Apr 2021 23:21:20 +0000 Subject: [PATCH] Set up Python Poetry --- pyproject.toml | 54 ++++++++++++++++++++++++++++++++++++++++++++++++ requirements.txt | 39 ---------------------------------- 2 files changed, 54 insertions(+), 39 deletions(-) create mode 100644 pyproject.toml delete mode 100644 requirements.txt diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..7d5edd9 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,54 @@ +[tool.poetry] +name = "mosfet" +version = "0.1.0" +description = "A general-purpose Minecraft bot" +authors = ["Tanner Collin "] +license = "MIT" + +[tool.poetry.dependencies] +python = "^3.8" +appdirs = "==1.4.3" +astar = "==0.93" +cachecontrol = "==0.12.6" +certifi = "==2019.11.28" +cffi = "==1.14.5" +chardet = "==3.0.4" +click = "==7.1.2" +colorama = "==0.4.3" +contextlib2 = "==0.6.0" +cryptography = "==3.4.7" +distlib = "==0.3.0" +distro = "==1.4.0" +flask = "==1.1.2" +html5lib = "==1.0.1" +idna = "==2.8" +ipaddr = "==2.2.0" +itsdangerous = "==1.1.0" +jinja2 = "==2.11.3" +lockfile = "==0.12.2" +markupsafe = "==1.1.1" +minecraft-data = "==2.82.2" +msgpack = "==0.6.2" +munch = "==2.5.0" +mutf8 = "==1.0.3" +packaging = "==20.3" +pep517 = "==0.8.2" +progress = "==1.5" +pycparser = "==2.20" +"pycraft.git@2813d02ae7fb8182c3e5227a73de2240b09878d9" = {git = "https://github.com/ammaraskar/pyCraft.git", rev = "2813d02ae7fb8182c3e5227a73de2240b09878d9"} +pynbt = "==3.1.0" +pyparsing = "==2.4.6" +pytoml = "==0.1.21" +requests = "==2.22.0" +retrying = "==1.3.3" +six = "==1.14.0" +urllib3 = "==1.25.8" +watchdog = "==2.0.2" +webencodings = "==0.5.1" +werkzeug = "==1.0.1" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index fcf93a2..0000000 --- a/requirements.txt +++ /dev/null @@ -1,39 +0,0 @@ -appdirs==1.4.3 -astar==0.93 -CacheControl==0.12.6 -certifi==2019.11.28 -cffi==1.14.5 -chardet==3.0.4 -click==7.1.2 -colorama==0.4.3 -contextlib2==0.6.0 -cryptography==3.4.7 -distlib==0.3.0 -distro==1.4.0 -Flask==1.1.2 -html5lib==1.0.1 -idna==2.8 -ipaddr==2.2.0 -itsdangerous==1.1.0 -Jinja2==2.11.3 -lockfile==0.12.2 -MarkupSafe==1.1.1 -minecraft-data==2.82.2 -msgpack==0.6.2 -munch==2.5.0 -mutf8==1.0.3 -packaging==20.3 -pep517==0.8.2 -progress==1.5 -pycparser==2.20 -git+https://github.com/ammaraskar/pyCraft.git@2813d02ae7fb8182c3e5227a73de2240b09878d9 -PyNBT==3.1.0 -pyparsing==2.4.6 -pytoml==0.1.21 -requests==2.22.0 -retrying==1.3.3 -six==1.14.0 -urllib3==1.25.8 -watchdog==2.0.2 -webencodings==0.5.1 -Werkzeug==1.0.1