-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
54 lines (46 loc) · 2.32 KB
/
setup.py
File metadata and controls
54 lines (46 loc) · 2.32 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
50
51
52
53
54
import sys
from pathlib import Path
from setuptools import setup
base_dir = Path(__file__).absolute().parent
sys.path.insert(0, str(base_dir / 'Qiber3D'))
import config # import Qiber3D config without triggering the module __init__.py
read_me = base_dir / 'README.md'
long_description = read_me.read_text(encoding='utf-8')
version = config.version
setup(name=config.app_name,
version=version,
description='Automated quantification of fibrous networks',
long_description=long_description,
long_description_content_type='text/markdown',
url=config.url,
download_url=f'https://github.com/theia-dev/Qiber3D/archive/v{version}.zip',
project_urls={"Binder": "https://mybinder.org/v2/gh/theia-dev/Qiber3D_jupyter/main?urlpath=git-pull%3Frepo%3Dhttps%253A%252F%252Fgithub.com%252Ftheia-dev%252FQiber3D%26urlpath%3Dtree%252FQiber3D%252Fdocs%252Fjupyter%252Findex.ipynb",
"Documentation": "https://qiber3d.readthedocs.io/"
},
author=config.app_author,
author_email='',
license='MIT',
packages=['Qiber3D'],
include_package_data=True,
install_requires=["nd2reader==3.*", "vedo==2024.*", "PIMS==0.7.*", "tifffile==2024.*", "networkx==3.*",
"matplotlib==3.*", "blosc==1.11.*", "openpyxl==3.*", "vtk==9.*", "scipy==1.*",
"tqdm==4.*", "scikit-image==0.*", "numpy==1.*", "Pillow==10.*"],
zip_safe=True,
keywords=['Skeleton', 'Network', 'Fiber', 'Reconstruction', 'Neurons',
'Vessel', 'Vascular', 'confocal', 'microscopy'],
python_requires='~=3.7',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Information Analysis',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3 :: Only'
],
)