-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
31 lines (27 loc) · 887 Bytes
/
pyproject.toml
File metadata and controls
31 lines (27 loc) · 887 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
29
30
31
[project]
name = "simplelogin"
version = "0.2.6"
description = "A command-line interface for managing your SimpleLogin email aliases and custom domains."
authors = [{ name="Joseph Demcher", email="git@joedem.ch"}]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE.md"]
dependencies = [
"requests>=2.25.0",
"docopt>=0.6.2",
"tabulate>=0.8.9",
"pyyaml>=5.4.0",
"questionary>=1.10.0",
]
keywords = ["email", "aliases", "simplelogin", "cli", "privacy"]
[project.urls]
Homepage = "https://github.com/joedemcher/simplelogin-cli"
Issues = "https://github.com/joedemcher/simplelogin-cli/issues"
Documentation = "https://github.com/joedemcher/simplelogin-cli/README.md"
[project.scripts]
simplelogin = "simplelogin.cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["simplelogin"]