From 9df29184f106170fa52a5a778c4afbd3f59df7c2 Mon Sep 17 00:00:00 2001 From: Florent Jeannot <12172017+FlorentJeannot@users.noreply.github.com> Date: Thu, 30 Jun 2022 10:47:07 +0200 Subject: [PATCH 1/2] tweak setup.cfg and add classifier --- setup.cfg | 2 ++ 1 file changed, 2 insertions(+) diff --git a/setup.cfg b/setup.cfg index 5d840582f..e77508a0a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -22,11 +22,13 @@ classifiers = Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Topic :: System :: Systems Administration + Typing :: Typed [options] python_requires = >=3.7 setup_requires = setuptools_scm packages = find: +include_package_data = true zip_safe = false install_requires = # direct dependencies From dc592db0507e7f814fe90a3629305b08f36fc4e3 Mon Sep 17 00:00:00 2001 From: Florent Jeannot <12172017+FlorentJeannot@users.noreply.github.com> Date: Fri, 1 Jul 2022 09:57:11 +0200 Subject: [PATCH 2/2] add options.package_data in setup.cfg --- setup.cfg | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e77508a0a..88ed6fa57 100644 --- a/setup.cfg +++ b/setup.cfg @@ -28,7 +28,6 @@ classifiers = python_requires = >=3.7 setup_requires = setuptools_scm packages = find: -include_package_data = true zip_safe = false install_requires = # direct dependencies @@ -42,6 +41,9 @@ install_requires = [options.packages.find] exclude = tests +[options.package_data] +piptools = py.typed + [options.extras_require] testing = pytest