forked from sandialabs/optimism
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (18 loc) · 694 Bytes
/
Copy pathsetup.py
File metadata and controls
19 lines (18 loc) · 694 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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='btalami@sandia.gov', # todo: make an email list
install_requires=['jax',
'jaxlib',
'scipy',
'matplotlib', # this is not strictly necessary
'netcdf4'],
#tests_require=[], # could put chex and pytest here
extras_require={'sparse': ['scikit-sparse']},
python_requires='>=3.7',
version='0.0.1',
license='MIT',
url='https://github.com/sandialabs/optimism'
)