-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (34 loc) · 1.44 KB
/
setup.py
File metadata and controls
41 lines (34 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup
from setuptools.extension import Extension
import numpy
setup (
name = "n88tools",
version = "9.1.0",
packages = ['n88tools'],
ext_modules = [Extension('n88tools.finiteelementfunctions',
include_dirs = [numpy.get_include()],
sources = ['extensions/finiteelementfunctions.cpp'])],
install_requires = ['numpy', 'scipy'],
entry_points = {
'console_scripts': [
'n88coarsen = n88tools.coarsen:main',
'n88compress = n88tools.compress:main',
'n88copymodel = n88tools.copymodel:main',
'n88directmechanics = n88tools.directmechanics:main',
'n88evaluate = n88tools.evaluate:main',
'n88extractfields = n88tools.extractfields:main',
'n88extractsets = n88tools.extractsets:main',
'faim = n88tools.faim:main',
'n88interpolatesolution = n88tools.interpolatesolution:main',
'n88modelinfo = n88tools.modelinfo:main',
'n88pistoia = n88tools.pistoia:main',
'n88postfaim = n88tools.postfaim:main',
'n88tabulate = n88tools.tabulate:main',
],
},
zip_safe = False, # force egg to unzip on installation
author = "Eric Nodwell",
author_email = "skboyd@ucalgary.ca",
description = "Various useful tools for use with n88model finite element models.",
url = "http://numerics88.com/",
)