adhd-reminder/setup.cfg

50 lines
1.0 KiB
INI

[metadata]
name = adhd-reminder
version = 0.0.1
author = missytake
author_email = missytake@systemli.org
description = Reminder which polls new ADHD appointments regularly
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/missytake/adhd-reminder
project_urls =
Bug Tracker = https://git.0x90.space/missytake/adhd-reminder/issues
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: ISC License (ISCL)
Operating System :: OS Independent
[options]
package_dir =
= src
packages = find:
include_package_data = True
python_requires = >=3.8
install_requires =
deltachat
ConfigArgParse
[options.packages.find]
where = src
[tool.setuptools.package-data]
myModule = ["*.jpg"]
[options.entry_points]
console_scripts =
adhd-reminder = adhd_reminder.__main__:main
[tox:tox]
envlist = lint, py310
isolated_build = True
[testenv:lint]
skip_install = True
deps =
black
commands =
black --check --diff --line-length 120 src
[flake8]
max_line_length = 88