25 lines
486 B
TOML
25 lines
486 B
TOML
[build-system]
|
|
requires = ["setuptools", "setuptools-scm"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "blastodon"
|
|
authors = [
|
|
{name = "D. Scott Boggs", email = "scott@techwork.zone"}
|
|
]
|
|
description = "Bluesky and Mastdon Cross-Poster"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11" # Self type
|
|
license = "AGPL-3.0-only"
|
|
dependencies = [
|
|
"atproto",
|
|
"mastodon.py",
|
|
"python-magic",
|
|
"click",
|
|
]
|
|
dynamic = ["version"]
|
|
|
|
|
|
[project.scripts]
|
|
# Put scripts here
|