-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (16 loc) · 733 Bytes
/
Copy pathsetup.py
File metadata and controls
17 lines (16 loc) · 733 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from setuptools import setup
setup(name='spectralCollocationSolver',
version='1.0.0',
description='package contains functionality for solving a (non linear) differential equation with a spectral collocation method based on a barycentric Lagrange interpolation',
author='Wolfgang Lubowski',
author_email='w.lub92@gmail.com',
packages=['spectralCollocationSolver'],
python_requires='>=3.0',
install_requires=['numpy','matplotlib'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4'
],
zip_safe=False)