From 45ef1404064074ad638df4288f166c2b6b4dcb4b Mon Sep 17 00:00:00 2001 From: Davide De Tommaso Date: Wed, 14 Oct 2020 18:35:29 +0200 Subject: [PATCH] Added __init__.py --- quantica/__init__.py | 0 setup.py | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) create mode 100644 quantica/__init__.py diff --git a/quantica/__init__.py b/quantica/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.py b/setup.py index bf3c901..120643e 100644 --- a/setup.py +++ b/setup.py @@ -20,10 +20,10 @@ author='Davide De Tommaso', author_email='dtmdvd@gmail.com', keywords=['petri','networks','python3.8'], - packages=find_packages(exclude=['examples*']), + packages=find_packages(), classifiers = [ 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9' - ], + python_requires='>=3.8', )