-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (45 loc) · 1.15 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mastoposter"
description = "Configurable reposter from Mastodon-compatible Fediverse servers"
authors = [
{name = "hatkidchan", email = "[email protected]"}
]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"Environment :: No Input/Output (Daemon)",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Communications",
"Topic :: Internet :: WWW/HTTP"
]
keywords = ["mastodon", "discord", "telegram"]
requires-python = ">=3.8"
dependencies = [
"Jinja2",
"beautifulsoup4[lxml]",
"emoji",
"httpx",
"websockets"
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"pytest"
]
[project.urls]
Source = "https://github.com/hatkidchan/mastoposter"
[project.scripts]
mastoposter = "mastoposter.__main__:main"
[tool.flit.sdist]
include = ["config.ini", "contrib/*"]
[tool.black]
line-length = 79
target-version = ['py37', 'py38']
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true