-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
85 lines (73 loc) · 1.9 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
from setuptools import setup
VERSION = "0.0.0"
DESCRIPTION = "Bayesian Traction Force Microscopy"
CLASSIFIERS = [
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
]
REQUIREMENTS = [
"attrs==20.3.0",
"certifi==2020.12.5",
"cycler==0.10.0",
"Cython==0.29.22",
"decorator==4.4.2",
"gitdb==4.0.5",
"GitPython==3.1.14",
"imageio==2.9.0",
"iniconfig==1.1.1",
"kiwisolver==1.3.1",
"matplotlib==3.3.4",
"natsort==7.1.1",
"networkx==2.5",
"numpy==1.20.1",
"opencv-python==4.5.1.48",
"OpenPIV==0.23.4",
"packaging==20.9",
"pandas==1.2.3",
"Pillow>=8.2.0",
"pluggy==0.13.1",
"py==1.10.0",
"pyparsing==2.4.7",
"pytest==6.2.2",
"python-dateutil==2.8.1",
"pytz==2021.1",
"PyWavelets==1.1.1",
"read-roi==1.6.0",
"scikit-image==0.18.1",
"scipy==1.6.1",
"Shapely==1.7.1",
"smmap==3.0.5",
"tifffile==2021.3.5",
"toml==0.10.2",
"tqdm==4.59.0",
"albumentations==0.5.2",
"segmentation_models_pytorch==0.2.0",
"shapely==1.7.1",
"googledrivedownloader==0.4",
"requests==2.25.1",
"scikit-learn==0.24.1",
"h5py==3.2.1",
"PyYAML==5.4.1",
]
SETUP_REQUIRES = ("pytest-cov", "pytest-runner", "pytest", "codecov")
TESTS_REQUIRES = ("pytest-cov", "codecov")
PACKAGES = [
"pytraction",
"pytraction.net",
]
options = {
"name": "pytraction",
"version": VERSION,
"author": "Ryan Greenhalgh",
"author_email": "rdg31@cam.ac.uk",
"description": DESCRIPTION,
"classifiers": CLASSIFIERS,
"packages": PACKAGES,
"setup_requires": SETUP_REQUIRES,
"test_requires": TESTS_REQUIRES,
"install_requires": REQUIREMENTS,
"entry_points": {
"console_scripts": ["pytraction_get_data=pytraction.get_example_data:main"]
},
}
setup(**options)