-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
49 lines (44 loc) · 1.17 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
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
import platform
VERSION = '2.1.0'
def readme():
with open('README.md') as f:
return f.read()
install_requires = [
'dill',
'google-cloud-storage',
'h5py',
'numpy<2',
'opencv-python',
'psutil',
'pyyaml',
'rtree',
'scikit-image',
'scipy',
'shapely>=2.0.0',
'tensorstore',
'triangle',
]
if (platform.python_version() < '3.12') and (platform.system() == 'Windows'):
install_requires.append('matplotlib<3.8')
else:
install_requires.append('matplotlib')
setup(
name='feabas',
version=VERSION,
description='A python library for stitching & alignment of connectome datasets using finite-element method.',
long_description=readme(),
long_description_content_type="text/markdown",
author='Yuelong Wu',
author_email='[email protected]',
python_requires='>=3.8',
packages=find_packages(),
include_package_data=True,
license='MIT',
install_requires=install_requires,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3'
]
)