netcup-dns/setup.cfg

36 lines
1013 B
INI
Raw Normal View History

; setup.cfg is the configuration file for setuptools.
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
[metadata]
2023-03-28 17:54:32 +02:00
name = netcup-dns
2023-12-08 22:40:39 +01:00
version = 0.2.2
author = Daniel Langbein
author_email = daniel@systemli.org
description = Update DNS records with your current external IP address using the netcup DNS API.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://codeberg.org/privacy1st/netcup-dns
project_urls =
Bug Tracker = https://codeberg.org/privacy1st/netcup-dns/issues
; https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: Unix
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6.9
[options.packages.find]
where = src
[options.entry_points]
; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
console_scripts=
netcup-dns = netcup_dns.main:main