-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
97 lines (86 loc) · 2.81 KB
/
Copy pathsetup.py
File metadata and controls
97 lines (86 loc) · 2.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#! /usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import find_packages
from setuptools import setup
with open('README.rst', 'rt') as readme_file:
readme = readme_file.read()
def prerelease_local_scheme(version):
"""
Return local scheme version unless building on master in CircleCI.
This function returns the local scheme version number
(e.g. 0.0.0.dev<N>+g<HASH>) unless building on CircleCI for a
pre-release in which case it ignores the hash and produces a
PEP440 compliant pre-release version number (e.g. 0.0.0.dev<N>).
"""
from setuptools_scm.version import get_local_node_and_date
if os.getenv('CIRCLE_BRANCH') in {'master'}:
return ''
else:
return get_local_node_and_date(version)
setup(
name='multic',
use_scm_version={'local_scheme': prerelease_local_scheme},
description='multi comprtment segmentation, feature extraction',
long_description=readme,
long_description_content_type='text/x-rst',
author='Sayat Mimar',
author_email='sayat.mimar@ufl.edu',
url='https://github.com/SarderLab/Multi-Compartment-Segmentation',
packages=find_packages(exclude=['tests', '*_test']),
package_dir={
'multic': 'multic',
},
include_package_data=True,
install_requires=[
# scientific packages
'nimfa>=1.3.2',
'numpy>=1.21.1',
'scipy>=0.19.0',
'Pillow==9.5.0',
'pandas>=0.19.2',
'imageio>=2.3.0',
# 'shapely[vectorized]',
#'opencv-python-headless<4.7',
#'sqlalchemy',
# 'matplotlib',
'pyvips',
'termcolor',
# 'seaborn',
'opencv-python',
'scikit-image>=0.19.2',
# 'scikit-learn==1.0.2',
'lxml==4.8.0',
'joblib==1.1.0',
# 'tifffile==2023.4.12',
'tiffslide',
'tqdm==4.64.0',
# 'umap-learn==0.5.3',
'openpyxl',
'xlrd<2',
# dask packages
'dask[dataframe]>=1.1.0',
'distributed>=1.21.6',
# large image sources
# 'large-image[sources]',
'girder-slicer-cli-web',
'girder-client',
# cli
'ctk-cli',
],
license='Apache Software License 2.0',
keywords='multic',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
],
zip_safe=False,
)