-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
75 lines (60 loc) · 1.65 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "enso-launcher-continued"
version = "2.0.38"
description = ""
authors = ["Pavel Vitis (blackdaemon) <pavelvitis@gmail.com>"]
license = "MIT"
readme = "README.md"
repository="https://github.com/blackdaemon/enso-launcher-continued"
homepage="https://github.com/blackdaemon/enso-launcher-continued"
keywords = ['enso', 'launcher']
packages = [
{ include = "enso" },
]
include = [
"scripts/run_enso.py",
"scripts/*.sh",
"*.cmd",
"*.sh",
"*.md",
"AUTHORS",
"README.*",
"VERSION",
"DEVELOPMENT",
"SConstruct.*",
]
[tool.poetry.dependencies]
python = "^2.7"
"backports.functools_lru_cache" = { version = "^1.5", python = "~2.7" }
pywin32 = { version = "^224.0", platform = "win32" }
pywinauto = { version = "^0.6.6", platform = "win32" }
dbus-python = { version = "^1.2", platform = "linux" }
psutil = { version = "^5.6", platform = "linux" }
pycairo = { version = "^1.18", platform = "linux" }
python-xlib = { version = "^0.25.0", platform = "linux" }
pyxdg = { version = "^0.26.0", platform = "linux" }
"vext.gi" = { version = "^0.7.0", platform = "linux" }
"vext.pygtk" = { version = "^0.7.0", platform = "linux" }
xprintidle = { version = "^0.2.0", platform = "linux" }
bs4 = "^0.0.1"
click = "^7.0"
contextlib2 = "^0.5.5"
httplib2 = "^0.12.3"
iniparse = "^0.4.0"
lxml = "^4.3"
pyparsing = "^2.4"
python-dateutil = "^2.8"
requests = "^2.22"
scandir = "^1.10"
shutilwhich = "^1.1"
six = "^1.12"
ujson = "^1.35"
urllib3 = "^1.25"
watchdog = "^0.9.0"
[tool.poetry.dev-dependencies]
Nuitka = "^0.6.3"
[tool.poetry.scripts]
enso = "run_enso"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"