summaryrefslogtreecommitdiffstats
path: root/setup.cfg
blob: 4039aaab2223e0a054c1a0755fa3d8bd891f8d0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# SPDX-FileCopyrightText: 2023 The freestyle-keys Authors
#
# SPDX-License-Identifier: 0BSD

[metadata]
name = freestyle-keys
description = Cryptographic keys used by FreeStyle Libre 2 glucometers.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/glucometers-tech/freestyle-keys
author = Diego Elio Pettenò
author_email = flameeyes@flameeyes.com
license = Freely Distributable
license_files =
    AUTHORS
    LICENSE
    LICENSES/*
classifiers =
    Development Status :: 4 - Beta
    Environment :: Plugins
    Intended Audience :: Developers
    License :: Freely Distributable
    Operating System :: OS Independent
    Programming Language :: Python
    Programming Language :: Python :: 3
    Topic :: Scientific/Engineering :: Medical Science Apps.
keywords =
    glucometer
    diabetes
    freestyle
    abbott

[options]
packages = find:
install_requires =
python_requires = ~= 3.9

[options.extras_require]
dev =
    mypy
    pre-commit
    pytest-mypy
    setuptools_scm

[options.package_data]
* = py.typed

[flake8]
max-line-length = 88
# Ignore long line errors, black takes care of them.
extend-ignore = E501