-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (24 loc) · 779 Bytes
/
setup.py
File metadata and controls
25 lines (24 loc) · 779 Bytes
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
from setuptools import find_packages, setup
setup(
name='fem',
packages=find_packages(),
version='9.0.0',
license='Apache v2.0',
author='Mark Palmeri',
author_email='mlp6@duke.edu',
description='FEM',
keywords=['arfi', 'swei', 'fem', 'ultrasound'],
long_description=open('README.md').read(),
url='https://github.com/mlp6/fem',
download_url='https://github.com/mlp6/fem/archive/refs/tags/v9.0.0.zip',
classifiers=[],
install_requires=['h5py',
'numpy>=1.16',
'scipy',
'matplotlib',
'pyevtk', ],
python_requires=">=3.11",
package_data={'fem': ['*.md', 'examples/*/*', 'docs/*']},
include_package_data=True,
zip_safe=False,
)