-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
38 lines (33 loc) · 890 Bytes
/
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
[project]
name = "ephemetoot"
version = "3.2.1"
description = "A command line tool to delete your old toots"
requires-python = ">=3.8"
authors = [
{name = "Hugh Rundle", email = "[email protected]"}
]
license = { text = "GPL-3.0-or-later"}
readme = "pypi-readme.md"
keywords = ["mastodon", "api", "microblogging"]
classifiers = [
"Environment :: Console",
"Operating System :: OS Independent",
"Topic :: Communications"
]
dependencies = [
"requests>=2.31.0",
"mastodon.py>=1.8.1",
"pyyaml>=6.0.1"
]
[project.optional-dependencies]
dev = ["pytest>=6"]
[project.scripts]
ephemetoot = 'ephemetoot.console:main'
[project.urls]
homepage = "https://ephemetoot.hugh.run"
repository = "https://github.com/hughrun/ephemetoot"
[build-system]
requires = ["setuptools>=69.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]