-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (47 loc) · 1.36 KB
/
setup.py
File metadata and controls
49 lines (47 loc) · 1.36 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
47
48
49
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.1.0',
packages=find_namespace_packages(),
python_requires='>=3.9,<3.14',
install_requires=[
'h5py>=2.8.0',
'numpy>=1.14',
'scipy>=1.0',
'tifffile>=0.15.1',
'pandas>=0.20.1,<3',
'pillow>=8.0.1',
'openpyxl>=3.0.10', # Required for pandas Excel support
],
extras_require={
'build': [
# Optional dependencies for building wheel file with binaries
'build'
],
'test': [
# Optional dependencies for testing
'pytest',
],
'docs': [
# Optional dependencies for testing
'sphinx',
'sphinx_rtd_theme',
'myst_parser'
],
'deploy': [
# Optional dependencies for deployment
'twine'
]
},
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
)