summaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.com>2023-08-03 10:26:19 +0200
committerDiego Elio Pettenò <flameeyes@flameeyes.com>2023-08-03 10:26:19 +0200
commite4db49c0cf7916a3303eadbdf7fd541e57e1ce9e (patch)
tree2f69f3774cacf41e01bf9afd1518e993063f4cae /setup.cfg
downloadfreestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar.gz
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar.bz2
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar.lz
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar.xz
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.tar.zst
freestyle-keys-e4db49c0cf7916a3303eadbdf7fd541e57e1ce9e.zip
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg51
1 files changed, 51 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..310d363
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,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.7
+
+[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