-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.07 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.07 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='jointforces',
packages=['jointforces'],
version='1.0.7',
description='A Python package to conduct 3D Traction Force Microcopy on multicelluar aggregates (spheroids).',
url='',
download_url = '',
author='Christoph Mark, David Böhringer',
author_email='christoph.mark@fau.de',
license='The MIT License (MIT)',
install_requires=['saenopy>=0.7.4',
'gmsh-sdk>=4.5.0',
'numpy>=1.16.2',
'pandas>=1.1.5',
'matplotlib>=2.2.2',
'scipy>=1.7.0',
'scikit-image>=0.14.2',
'openpiv>=0.23.4',
'tqdm>=4.26.0',
'natsort>=5.1.0',
'dill>=0.2.9',
'roipoly>=0.5.2',
'openpyxl',
'pyyml',
'matplotlib-scalebar'],
keywords = ['piv', 'contractility', 'material simulation', 'biophysics'],
classifiers = [],
)