From 4177a8b70e1afe98f2c17840b384d7b2c8a6561c Mon Sep 17 00:00:00 2001 From: "Rodrigo A. Melo" Date: Sun, 23 Jun 2024 21:31:11 -0300 Subject: [PATCH] Fixed/updated package name, added jinja2 as dependency, deprecated Python 3.7 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 9018d2d7..a3eaab1d 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,6 @@ 'Intended Audience :: Developers', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.10', @@ -39,5 +38,6 @@ 'Topic :: Utilities', 'Topic :: Software Development :: Build Tools', "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)" - ] + ], + install_requires=['jinja2'] )