-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
89 lines (84 loc) · 2.26 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
86
87
88
89
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
from os.path import dirname, exists, realpath
from setuptools import find_packages, setup
author = "PiSCAT developers"
# authors in alphabetical order
authors = [
"Houman Mirzaalian",
"Reza Gholami",
]
description = "Interferometric scattering microscopy with Python"
name = "piscat"
year = "2021"
sys.path.insert(0, realpath(dirname(__file__)) + "/" + name)
try:
from piscat import version
except BaseException:
version = "unknown"
setup(
name=name,
author=author,
author_email="[email protected]",
project_urls={
"Documentation": "https://piscat.readthedocs.io/",
"Source": "https://github.com/SandoghdarLab/PiSCAT/",
"Tracker": "https://github.com/SandoghdarLab/PiSCAT/issues",
},
version=version,
packages=find_packages(),
package_dir={name: name},
include_package_data=True,
license="GPL v3",
description=description,
long_description=open("README.md").read() if exists("README.md") else "",
long_description_content_type="text/markdown",
install_requires=[
"numpy==1.23.5",
"scipy>=0.14.0",
"matplotlib",
"opencv-python",
"pandas<2.0",
"PyQt6==6.2",
"Pyside6==6.2",
"pyqtgraph==0.12",
"PyWavelets",
"PyQtWebEngine",
"scikit_learn",
"scikit-image",
"tqdm",
"joblib",
"psutil",
"ipywidgets",
"networkx",
"numba",
"trackpy",
"requests",
"wget",
"h5py",
"imageio-ffmpeg==0.4.5",
"astropy",
"tifffile",
"flifile",
"notebook",
"pytest",
"coverage",
"tensorflow",
"GitPython",
"subprocess.run",
"PyWavelets",
],
# not to be confused with definitions in pyproject.toml [build-system]
setup_requires=["pytest-runner"],
python_requires=">=3.8",
tests_require=["pytest", "pytest-mock"],
keywords=[],
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Visualization",
"Intended Audience :: Science/Research",
],
platforms=["ALL"],
)