-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (39 loc) · 909 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
name = "mmc-export"
version = "2.2.0"
description = "Export MMC modpack to other modpack formats"
authors = ["RozeFound"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/RozeFound/mmc-export"
keywords = [
"minecraft",
"mods",
"modpack",
"converter",
"MultiMC"
]
packages = [
{ include = "mmc_export" }
]
[tool.poetry.dependencies]
python = "^3.10"
aiohttp = "^3.8.1"
murmurhash2 = "^0.2.10"
tomli = "^2.0.1"
pytoml = "^0.1.21"
tenacity = "^8.0.1"
Werkzeug = "^2.1.2"
jsonpickle = "^2.1.0"
cryptography = "^37.0.2"
aiohttp-client-cache = {extras = ["filesystem"], version = "^0.7.0"}
xxhash = "^3.0.0"
gql-query-builder = "^0.1.7"
keyring = "^23.5.1"
[tool.poetry.dev-dependencies]
bandit = "^1.7.0"
[tool.poetry.scripts]
mmc-export = "mmc_export:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"