-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.06 KB
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
[project]
name = "fastmail-cli"
version = "0.2.3"
description = "CLI for AI agents to access Fastmail via JMAP - draft responses without sending"
readme = "README.md"
license = "Apache-2.0"
requires-python = ">=3.13"
authors = [
{ name = "Joseph Turian", email = "lastname@gmail.com" }
]
keywords = ["fastmail", "jmap", "email", "cli", "api"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.13",
"Topic :: Communications :: Email",
"Topic :: Utilities",
]
dependencies = [
"jmapc>=0.2.23",
]
[project.urls]
Homepage = "https://github.com/noc0dev/fastmail-cli"
Repository = "https://github.com/noc0dev/fastmail-cli"
Issues = "https://github.com/noc0dev/fastmail-cli/issues"
[project.scripts]
fastmail-cli = "fastmail_cli.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"