From 87eca04b639e17e4e2aecc24432007b03f0d6b4d Mon Sep 17 00:00:00 2001
From: Mohamed ZAARAOUI <115699524+ZAARAOUI999@users.noreply.github.com>
Date: Sun, 13 Aug 2023 21:00:12 +0100
Subject: [PATCH] Create setup.cfg

---
 setup.cfg | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)
 create mode 100644 setup.cfg

diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..fc53254
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,40 @@
+
+[metadata]
+name = hypermat
+version = 0.0.6
+author = Mohamed ZAARAOUI
+author_email = mohamed.zaaraoui.999@gmail.com
+description = Hyperelastic formulations using an algorithmic differentiation with hyper-dual numbers in Python
+description-file = README.md
+url = https://github.com/ZAARAOUI999/hypermat
+project_urls =
+    Code=https://github.com/ZAARAOUI999/hypermat
+    Issues=https://github.com/ZAARAOUI999/hypermat/issues
+long_description = file: README.md
+long_description_content_type = text/markdown
+license = GPL-3.0-or-later
+license_file = LICENSE
+classifiers =
+    Development Status :: 5 - Production/Stable
+    Intended Audience :: Science/Research
+    License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
+    Operating System :: OS Independent
+    Programming Language :: Python
+    Programming Language :: Python :: 3
+    Programming Language :: Python :: 3.7
+    Programming Language :: Python :: 3.8
+    Programming Language :: Python :: 3.9
+	Programming Language :: Python :: 3.10
+    Topic :: Scientific/Engineering
+    Topic :: Scientific/Engineering :: Mathematics
+    Topic :: Utilities
+
+[options]
+packages = find:
+install_requires =
+    numpy
+    matplotlib
+    scipy
+    lmfit
+
+python_requires = >=3.7