-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·43 lines (41 loc) · 1.32 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='fm-track',
version='1.0.0',
description='Feature-based fiducial marker tracking software for applications in cell mechanics',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research'
],
keywords='fiducial marker cell mechanics tracking feature',
url='https://github.com/elejeune11/FM-Track',
author='Emma Marie Lejeune',
author_email='emma.lejeune.11@gmail.com',
license='MIT',
packages=['fmtrack'],
python_requires='>=3.0, <=3.6',
package_data={
'fmtrack': ['data/*.tif'],
'fmtrack': ['el_papers.mplstyle']
},
install_requires=[
'markdown',
'numpy',
'matplotlib',
'scipy',
'sklearn-contrib-py-earth',
'scikit-image',
'scikit-learn',
'pyvista',
'tqdm'
],
setup_requires=['numpy'],
include_package_data=True,
zip_safe=False)