discover-mastodon-servers/setup.py

24 lines
735 B
Python
Raw Permalink Normal View History

2024-01-19 14:33:49 +01:00
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""Setup script"""
import configparser
import setuptools
config = configparser.ConfigParser()
config.read('setup.cfg')
setuptools.setup(
2024-01-29 14:17:30 +01:00
scripts=['discover_mastodon_servers/discover_mastodon_servers.py'],
2024-01-19 14:33:49 +01:00
author="Antonio J. Delgado",
version=config['metadata']['version'],
name=config['metadata']['name'],
2024-01-29 14:12:23 +01:00
author_email="ad@susurrando.com",
2024-03-12 12:48:02 +01:00
url="ssh://git@repos.susurrando.com:1122/srv/git.repos/discover-mastodon-servers.git",
2024-01-19 14:33:49 +01:00
description="Discover Mastodon servers by looking at public timelines",
long_description="README.md",
long_description_content_type="text/markdown",
license="GPLv3",
# keywords=["my", "script", "does", "things"]
)