Set up Python Poetry
This commit is contained in:
parent
d099ae6965
commit
e74082be27
54
pyproject.toml
Normal file
54
pyproject.toml
Normal file
|
@ -0,0 +1,54 @@
|
||||||
|
[tool.poetry]
|
||||||
|
name = "mosfet"
|
||||||
|
version = "0.1.0"
|
||||||
|
description = "A general-purpose Minecraft bot"
|
||||||
|
authors = ["Tanner Collin <git@tannercollin.com>"]
|
||||||
|
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"
|
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user