-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
], | ||
) | ||
|