-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 726 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 726 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
setup(
name='arnold',
packages=['arnold'],
version='1.0',
description='Python package to analyze musccle strength using 3D Traction Force Microscopy',
url='',
download_url = '',
author='David Böhringer, Christoph Mark',
author_email='david.boehringer@fau.de',
license='The MIT License (MIT)',
install_requires=['numpy>=1.16.2',
'pandas>=0.20',
'matplotlib>=2.2.2',
'roipoly>=0.5'
'pillow>=7.0.0'
'tqdm>=4.44.1'],
keywords = ['muscle', 'contractility', 'material simulation', 'Traction Force Microscopy'],
classifiers = [],
)