-
Notifications
You must be signed in to change notification settings - Fork 231
/
Copy pathsetup.py
22 lines (21 loc) · 917 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(name='devito',
version='2.0.1',
description="Finite Difference DSL for symbolic computation.",
long_descritpion="""Devito is a new tool for performing
optimised Finite Difference (FD) computation from high-level
symbolic problem definitions. Devito performs automated code
generation and Just-In-time (JIT) compilation based on symbolic
equations defined in SymPy to create and execute highly
optimised Finite Difference kernels on multiple computer
platforms.""",
url='http://www.opesci.org/devito',
author="Imperial College London",
author_email='opesci@imperial.ac.uk',
license='MIT',
packages=['devito'],
install_requires=['numpy', 'sympy', 'mpmath', 'cgen', 'codepy'],
test_requires=['pytest', 'flake8', 'isort'])