-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (48 loc) · 1.59 KB
/
setup.py
File metadata and controls
51 lines (48 loc) · 1.59 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
# SPDX-FileCopyrightText: 2025 Helmholtz-Zentrum für Umweltforschung GmbH - UFZ
# SPDX-License-Identifier: GPL-3.0-or-later
import os
from setuptools import setup, find_packages
long_description = open('README.md').read() if os.path.exists('README.md') else ''
setup(
name='PyExpress',
version='1.0',
description='Python library for automating 3D image analysis pipelines',
long_description = long_description,
long_description_content_type='text/markdown',
url='https://github.com/Helmholtz-UFZ/PyExpress.git',
author='Martin Kobe, Claudius Wehner, Rikard Graß',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
],
keywords='3D image analysis, photogrammetry, research, automation, pipeline',
packages=find_packages(
include=['PyExpress', 'PyExpress.*'],
exclude=['LICENSES', 'DOCS']
),
install_requires=[
'python-abc',
'influxdb-client',
'pysftp',
'opencv-python',
'tifffile',
'pandas',
'seaborn',
'scikit-learn',
'scikit-image',
'minio',
'numpy',
'astral',
'boto3==1.35.99',
'jupyter',
'notebook'
],
python_requires='>=3.9',
license_files=("LICENSE.md", "LICENSES/GPL-3.0-or-later.txt"),
include_package_data=True,
zip_safe=False,
)