From 1f2ff6342dd41126092bcd04dda29574dc0872b5 Mon Sep 17 00:00:00 2001 From: Tizian Wenzel <tizian.wenzel@uni-hamburg.de> Date: Sun, 31 Dec 2023 19:56:03 +0100 Subject: [PATCH] setup.py added. --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..015eeee --- /dev/null +++ b/setup.py @@ -0,0 +1,25 @@ +from setuptools import setup + +setup( + name='PDE-VKOGA', + version='0.1.0', + description='Python implementation of PDE-VKOGA to approximate the solution of linear PDEs.', + url='https://gitlab.mathematik.uni-stuttgart.de/pub/ians-anm/pde-vkoga', + author='Tizian Wenzel', + author_email='tizian.wenzel@mathematik.uni-stuttgart.de', + license='GNU v3.0', + packages=['vkoga_pde'], + install_requires=['numpy==1.24.1', 'matplotlib==3.7.2', 'scipy==1.11.4', 'scikit-learn==1.3.2'], + classifiers=[ + 'Development Status :: 1 - Planning', + 'Intended Audience :: Science/Research', + 'License :: OSI Approved :: BSD License', + 'Operating System :: POSIX :: Linux', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + ], +) + -- GitLab