-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·40 lines (38 loc) · 1.19 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
from setuptools import setup, find_packages
with open("Readme.md", "r") as f:
long_description = f.read()
setup(name='niicat',
version='0.5.0',
description='Preview nifti images on the terminal',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/MIC-DKFZ/niicat/',
author='Jakob Wasserthal',
author_email='[email protected]',
python_requires='>=3.7',
license='GPL v2',
packages=find_packages(),
install_requires=[
'nibabel>=2.3.0',
'matplotlib',
'numpy',
'importlib-metadata;python_version<"3.8"'
],
extras_require={
'libsixel': ['libsixel-python'],
},
zip_safe=False,
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Operating System :: Unix',
'Operating System :: MacOS'
],
entry_points={
'console_scripts': [
'niicat=niicat.cli:main',
],
},
package_data={'niicat.resources': ['imgcat.sh', 'niipre.py']},
)