-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.cfg
62 lines (56 loc) · 1.7 KB
/
setup.cfg
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
[metadata]
# https://packaging.python.org/en/latest/tutorials/packaging-projects/
# https://setuptools.pypa.io/en/latest/userguide/
name = matrix-commander
version = 8.0.0
author = 8go
description = A simple command-line Matrix client
long_description = file: PyPi-Instructions.md, README.md
# long_description = file: README.md
long_description_content_type = text/markdown
keywords = Matrix, chat, messaging
url = https://github.com/8go/matrix-commander
project_urls =
Bug Tracker = https://github.com/8go/matrix-commander/issues
repository = https://github.com/8go/matrix-commander
classifiers =
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Natural Language :: English
Topic :: Communications :: Chat
[options]
# use root, i.e. leave empty
package_dir =
packages = find:
include_package_data = True
python_requires = >=3.11
install_requires =
aiohttp
aiofiles>=0.6.0
argparse
asyncio
async-timeout # see Issue 161
datetime
emoji
markdown
matrix-nio[e2e]>=0.14.1
notify2
# dbus-python # indirectly required by notify2 # not directly required by matrix-commander
Pillow
python_magic
pyxdg
uuid
[options.package_data]
# add docu if there is any inside the module(s)
* = *.md, *.rst, matrix-commander-tui
[options.entry_points]
console_scripts =
# desired-command-name = module:function
matrix-commander = matrix_commander:main
[options.packages.find]
# where is root directory, i.e. empty
where =