Skip to content

Commit

Permalink
V0.1.1 setup
Browse files Browse the repository at this point in the history
  • Loading branch information
luksen99 authored Nov 26, 2019
1 parent 89ba306 commit 3eb2795
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions NTMpy/setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
import setuptools

with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(
name="NTMpy",
version="0.1.1",
author="Lukas Alber & Valentino Scalera",
author_email="lukas.alber@fysik.su.se",
description="A solver for parabolic partial differential equations",
long_description="With this solver we provide an object which can be used to solve parabolic partial differential equations, i.e. 1st order in time and 2nd order in space.In addition we provide a class to compute the energy deposit by a source via Transfer Matrix Method and a class for graphical output for visualization.",
long_description_content_type="text/markdown",
url="https://github.com/udcm-su/heat-diffusion-1D",
packages=setuptools.find_packages(),
classifiers=[
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
keywords='mathematical modeling two temperature model differential equation',
install_requires = [
'numpy' ,
'matplotlib',
'bspline',
'tqdm'
],
)

0 comments on commit 3eb2795

Please sign in to comment.