From 9bfc30460e17b8b16e48a003f1c3ea7856df2147 Mon Sep 17 00:00:00 2001 From: Sarah Date: Sun, 17 Oct 2021 12:57:12 +0200 Subject: [PATCH] Actually include some packages --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fad802c..d55a15c 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #setup.py: import os -from distutils.core import setup +from setuptools import setup, find_packages DIR = os.path.dirname(__file__) @@ -12,6 +12,7 @@ with open(os.path.join(DIR, "VERSION")) as f: setup( name="peerix", + packages=find_packages(), entry_points={ "console_scripts": [ 'peerix = peerix.__main__:run'