File: pyproject.toml

package info (click to toggle)
weechat-matrix 0.3.0-3.3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 808 kB
  • sloc: python: 7,992; makefile: 27
file content (33 lines) | stat: -rw-r--r-- 933 bytes parent folder | download
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
[tool.poetry]
name = "matrix"
version = "0.3.0"
license = "ISC"
description = "Weechat protocol script for Matrix."
authors = ["Damir Jelić <poljar@termina.org.uk>"]
packages = [
    { include = "matrix" },
    { include = "contrib/*.py", format = "sdist" },
    { include = "main.py", format = "sdist" },
]

[tool.poetry.dependencies]
python = "^3.6"
pyOpenSSL = "^19.1.0"
webcolors = "^1.11.1"
atomicwrites = "^1.3.0"
attrs = "^19.3.0"
pygments = "^2.6.1"
matrix-nio = { version = "^0.21.0", extras = [ "e2e" ] }
python-magic = { version = "^0.4.15", optional = true }
aiohttp = { version = "^3.6.2", optional = true }
requests = { version = "^2.23.0", optional = true }
typing = { version = "^3.7.4", python = "<3.5" }

[tool.poetry.extras]
matrix_decrypt = ["requests"]
matrix_sso_helper = ["aiohttp"]
matrix_upload = ["python-magic", "requests"]

[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"