From 257b0f63fee8df04c0aed6d61d005eaa3ca46813 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Mon, 11 Apr 2022 19:17:39 +0800 Subject: [PATCH] packaging issue fixed It was setuptools-scm that caused a lot of unintended files to be packaged. That package was required by twine but it's no longer needed now. --- nvchecker/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nvchecker/__init__.py b/nvchecker/__init__.py index 1e47b53..756d4cf 100644 --- a/nvchecker/__init__.py +++ b/nvchecker/__init__.py @@ -1,4 +1,4 @@ # MIT licensed # Copyright (c) 2013-2022 lilydjwg , et al. -__version__ = '2.8' +__version__ = '2.8.post1' diff --git a/setup.py b/setup.py index 7848538..80f4b24 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ setup( platforms = 'any', zip_safe = True, - packages = find_namespace_packages(exclude=['tests', 'build*', 'docs*']), + packages = find_namespace_packages(include=['nvchecker*']), install_requires = ['setuptools; python_version<"3.8"', 'tomli', 'structlog', 'appdirs', 'tornado>=6', 'pycurl'], extras_require = { 'vercmp': ['pyalpm'],