-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (36 loc) · 991 Bytes
/
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
from setuptools import setup, find_packages
setup(
name='pycad-medic',
version='0.0.10',
author='Mohammed El Amine Mokhtari',
author_email='[email protected]',
packages=find_packages(),
description='A medical imaging library for Python',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://pycad.co',
project_urls={
"Documentation": "https://pycad.co",
"Source Code": "https://github.com/amine0110/pycad",
},
install_requires=[
'numpy==1.26.0',
'tqdm==4.66.1',
'glob2',
'SimpleITK==2.3.0',
'pillow==10.0.1',
'pydicom==2.4.3',
'vtk==9.2.6',
'vedo==2023.4.6',
'scikit-image==0.22.0',
'opencv-python==4.8.1.78',
'pytest-shutil',
'nibabel==3.2.2',
'gdown==4.7.1',
],
entry_points={
'console_scripts': [
'pycad=pycad.cli:main',
],
},
)