-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (27 loc) · 816 Bytes
/
pyproject.toml
File metadata and controls
32 lines (27 loc) · 816 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
32
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "mtb"
version = "1.0.0"
authors = [{name="Tim Schatto-Eckrodt", email="tim.schatto-eckrodt@uni-hamburg.de" }]
description = "This tool is meant to facilitate the gathering and analysis of data from the Mastodon network. "
readme = "README.md"
dependencies = [
"beautifulsoup4==4.11.1",
"bs4==0.0.1",
"Mastodon.py==1.8.0",
"requests==2.28.2",
"boltons==23.0.0",
"tqdm==4.65.0"
]
requires-python = ">=3.8"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ['mtb*']
[project.scripts]
mtb = "mtb.mtb:main"
[project.urls]
"Homepage" = "https://github.com/Kudusch/mastodon_toolbox"
"Bug Tracker" = "https://github.com/Kudusch/mastodon_toolbox/issues"