-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.64 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (44 loc) · 1.64 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="FASTrack",# Replace with your own username
version="1.0.2",
author="Tural Aksel",
author_email="turalaksel@gmail.com",
description="Automated filament tracker for in-vitro motility actin gliding assays",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/turalaksel/FAST",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
scripts=['bin/fast',
'bin/lima',
'bin/ppss',
'bin/stack2tifs'],
install_requires=['backports.functools-lru-cache==1.5',
'cycler==0.10.0',
'decorator==4.3.0',
'enum34==1.1.6',
'futures==3.2.0',
'imageio==2.3.0',
'kiwisolver==1.0.1',
'matplotlib==2.2.2',
'networkx==2.1',
'numpy==1.11.2',
'opencv-python==3.4.0.12',
'pillow>=6.2.2',
'pyparsing==2.2.0',
'python-dateutil==2.7.2',
'pytz==2018.4',
'PyWavelets==0.5.2',
'scikit-image==0.13.1',
'scipy==1.0.1',
'six==1.11.0',
'subprocess32==3.2.7'],
python_requires='>=2.7, !=3.*',
)