-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (23 loc) · 765 Bytes
/
pyproject.toml
File metadata and controls
28 lines (23 loc) · 765 Bytes
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
[tool.poetry]
name = "routEar"
version = "0.0.1"
description = "Receives JSON data from router to notify the user (Through Desktop Notification) about various network information."
authors = ["Mahir Labib Chowdhury <optical.mahir@gmail.com>"]
readme = "README.md"
repository = "https://github.com/m4hi2/routEar"
license = "MIT"
packages = [
{include = "routEar"}
]
[tool.poetry.dependencies]
python = ">=3.6"
Flask = "^1.1.2"
pywin32 = {version = "300", platform = "win32"}
win10toast = {version = "^0.9", platform = "win32"}
jeepney = { version = "^0.6", platform = "linux"}
pync = {version = "^2.0.3", platform = "darwin"}
[tool.poetry.scripts]
routEar = "routEar.app:main"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"