Add email

This commit is contained in:
Antonio J. Delgado 2024-01-29 15:12:23 +02:00
parent 9f5d53513f
commit 2e1334ff99
3 changed files with 6 additions and 7 deletions

View file

@ -4,9 +4,8 @@ WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir /usr/src/app/
COPY . .
RUN python3 setup.py /usr/src/app/install
# CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ]

View file

@ -3,14 +3,14 @@ requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project.urls]
Homepage = ""
Homepage = "ssh://git@repos.susurrando.com:7272/srv/git.repos/discover-mastodon-servers.git"
[project]
name = "discover-mastodon-servers"
version = "0.0.1"
description = "Discover Mastodon servers by looking at public timelines"
readme = "README.md"
authors = [{ name = "Antonio J. Delgado", email = "" }]
authors = [{ name = "Antonio J. Delgado", email = "ad@susurrando.com" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: GPLv3 License",
@ -22,4 +22,4 @@ dependencies = [
"click",
"click_config_file",
]
requires-python = ">=3"
requires-python = ">=3"

View file

@ -13,8 +13,8 @@ setuptools.setup(
author="Antonio J. Delgado",
version=config['metadata']['version'],
name=config['metadata']['name'],
author_email="",
url="",
author_email="ad@susurrando.com",
url="ssh://git@repos.susurrando.com:7272/srv/git.repos/discover-mastodon-servers.git",
description="Discover Mastodon servers by looking at public timelines",
long_description="README.md",
long_description_content_type="text/markdown",