mirror of
https://github.com/lilydjwg/nvchecker.git
synced 2025-03-10 06:14:02 +00:00
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:
parent
5605f62269
commit
257b0f63fe
2 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
# MIT licensed
|
||||
# Copyright (c) 2013-2022 lilydjwg <lilydjwg@gmail.com>, et al.
|
||||
|
||||
__version__ = '2.8'
|
||||
__version__ = '2.8.post1'
|
||||
|
|
2
setup.py
2
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'],
|
||||
|
|
Loading…
Add table
Reference in a new issue