-
Notifications
You must be signed in to change notification settings - Fork 163
/
pyproject.toml
53 lines (46 loc) · 1.3 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "alot"
description = "Terminal MUA using notmuch mail"
authors = [
{name="Patrick Totzke", email="[email protected]"}
]
maintainers = [
{name="Lucas Hoffmann", email="[email protected]"},
]
readme = "README.md"
dynamic = ["version"]
requires-python = ">=3.8"
license = { text = "GPL-3.0-or-later" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console :: Curses",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Communications :: Email :: Email Clients (MUA)",
"Topic :: Database :: Front-Ends",
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
]
dependencies = [
"notmuch2>=0.30",
"urwid>=1.3.0",
"urwidtrees>=1.0.3",
"twisted>=18.4.0",
"python-magic",
"configobj>=4.7.0",
"gpg>1.10.0",
]
[project.optional-dependencies]
docs = ["sphinx"]
tests = ["pytest"]
[project.scripts]
alot = "alot.__main__:main"
[project.urls]
Repository = "https://github.com/pazz/alot"
Documentation = "https://alot.readthedocs.io/en/latest/"
Issues = "https://github.com/pazz/alot/issues"
[tool.setuptools.packages.find]
include = ["alot*"]
[tool.setuptools_scm]