-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (39 loc) · 1.13 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
from setuptools import setup, find_namespace_packages
# read the contents of README file
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='isx',
version='2.0.1',
packages=find_namespace_packages(),
python_requires='>=3.9,<3.13',
install_requires=[
'h5py>=2.8.0',
'numpy>=1.14',
'scipy>=1.0',
'tifffile>=0.15.1',
'pandas>=0.20.1',
'pillow>=8.0.1',
'openpyxl>=3.0.10', # Required for pandas Excel support
],
extras_require={
'test': [
# Optional dependencies for testing
'pytest',
],
'docs': [
# Optional dependencies for testing
'sphinx',
'sphinx_rtd_theme',
'myst_parser'
]
},
include_package_data=True,
description="A python package for interacting with Inscopix data.",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/inscopix/pyisx",
author="Inscopix, Inc.",
has_ext_modules=lambda: True
)