forked from sandialabs/optimism
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
20 lines (19 loc) · 776 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import setuptools
setuptools.setup(
name='optimism',
description='Rapid development platform for solid mechanics research using optimization tools',
author="Michael Tupek and Brandon Talamini",
author_email='[email protected]', # todo: make an email list
install_requires=['jax[cpu]==0.4.28',
'scipy',
'matplotlib', # this is not strictly necessary
'netcdf4',
'metis'],
#tests_require=[], # could put chex and pytest here
extras_require={'sparse': ['scikit-sparse'],
'test': ['pytest', 'pytest-cov', 'pytest-xdist']},
python_requires='>=3.7',
version='0.0.1',
license='MIT',
url='https://github.com/sandialabs/optimism'
)