-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
52 lines (48 loc) · 1.38 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
from traceback import extract_stack
from setuptools import setup, find_packages
packages = find_packages()
print(packages)
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
version = "0.2.25"
setup(
name="eda_plugin",
version=version,
description="Event-driven acquisition",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wl-stepp/eda_plugin",
project_urls={
"Bug Tracker": "https://github.com/wl-stepp/eda_plugin/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
packages=packages,
package_data={"": ["settings.json", "utility/*.jar", "utility/models/*"]},
include_package_data=True,
install_requires=[
"qtpy",
"pycromanager >0.19, <0.26",
"pyqtgraph",
"qimage2ndarray",
"qdarkstyle",
"tifffile",
"zenodo_get",
"docstring_inheritance",
"zarr",
"ome_zarr",
"pymm_eventserver",
"ome-types[lxml]",
],
extras_require={
'pyqt5': ['PyQt5'],
'pyqt6': ['PyQt6'],
'test': ['pytest', 'pytest-qt'],
},
author="Willi L. Stepp",
author_email="[email protected]",
python_requires=">=3.7",
)