From 275e502be3d17539e561cd8fe898c0abb6d58da8 Mon Sep 17 00:00:00 2001 From: lilydjwg Date: Wed, 26 Aug 2020 20:19:13 +0800 Subject: [PATCH] update setup.py --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index af2aa07..d29728b 100755 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 -from setuptools import setup, find_packages +from setuptools import setup import nvchecker # The complex upload command: @@ -20,7 +20,7 @@ setup( platforms = 'any', zip_safe = False, - packages = find_packages(exclude=["tests"]), + packages = ['nvchecker', 'nvchecker_source'], install_requires = ['setuptools', 'toml', 'structlog', 'tornado>=6', 'pycurl'], extras_require = { 'vercmp': ['pyalpm'], @@ -38,7 +38,7 @@ setup( 'nvcmp = nvchecker.tools:cmp', ], }, - package_data = {'nvchecker': ['source/vcs.sh']}, + package_data = {'nvchecker_source': ['vcs.sh']}, classifiers = [ "Development Status :: 5 - Production/Stable",