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 ./ COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir /usr/src/app/
COPY . . COPY . .
RUN python3 setup.py /usr/src/app/install
# CMD [ "python", "./your-daemon-or-script.py" ] # CMD [ "python", "./your-daemon-or-script.py" ]
CMD [ "sh" ] CMD [ "sh" ]

View file

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

View file

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