From 980ec9a62e2f78125192817068ba97b9aaec3fca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 27 Dec 2020 18:45:55 +0000 Subject: [PATCH] Fix setup.py. --- .gitignore | 3 +++ setup.py | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index e7a4e11..2ac981d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,6 @@ __pycache__ *~ .kdev4 *.kdev4 +build/ +dist/ +neohubapi.egg-info/ diff --git a/setup.py b/setup.py index 1ad4ee5..e3921d8 100755 --- a/setup.py +++ b/setup.py @@ -3,9 +3,9 @@ # SPDX-FileCopyrightText: 2020 Andrius Štikonas # SPDX-License-Identifier: MIT -from setuptools import setup +import setuptools -setup( +setuptools.setup( name = "neohubapi", version = "0.1", description = "Async library to communicate with Heatmiser NeoHub 2 API.",