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.
This commit is contained in:
lilydjwg 2022-04-11 19:17:39 +08:00
parent 5605f62269
commit 257b0f63fe
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
# MIT licensed
# Copyright (c) 2013-2022 lilydjwg <lilydjwg@gmail.com>, et al.
__version__ = '2.8'
__version__ = '2.8.post1'

View file

@ -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'],