From c042d2407931ea45163745fa3ac0ab9586ea8a28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Sousa?= Date: Mon, 20 Apr 2020 22:50:32 +0100 Subject: [PATCH] Added events subpackage to setup.py --- setup.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 9e0e45e..96d8bae 100644 --- a/setup.py +++ b/setup.py @@ -15,15 +15,11 @@ url='https://github.com/sousa-andre/lcu-driver/', long_description_content_type='text/markdown', long_description=long_description, - packages=['lcu_driver'], + packages=['lcu_driver', 'lcu_driver.events'], install_requires=[ 'aiohttp', 'psutil' ], - classifiers=[ - 'Programming Language :: Python :: 3.7', - 'Operating System :: Microsoft :: Windows' - ], project_urls={ 'Source': 'https://github.com/sousa-andre/lcu-driver/' }