-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (25 loc) · 841 Bytes
/
setup.py
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
#!/usr/bin/env python
from setuptools import setup
setup(
name='CompactionAnalyzer',
packages=['CompactionAnalyzer'],
version='1.0.7',
description='A python package to analyze matrix fiber alignment around cells (proxy for cellular forces)',
url='',
download_url = '',
author='David Böhringer, Andreas Bauer',
author_email='[email protected]',
license='GNU General Public License v3.0',
install_requires=['numpy>=1.2.6',
'pandas>=0.23.4',
'matplotlib>=2.2.2',
'roipoly>=0.5.3',
'scikit-image>=0.24.0',
'pyyml',
'tqdm',
'openpyxl',
'natsort',
'matplotlib-scalebar'],
keywords = ['structure', 'contractility', 'compaction','fibrosis', 'biophysics'],
classifiers = [],
)