-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
26 lines (24 loc) · 967 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
import os
from glob import glob
from setuptools import setup, find_packages
dir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(dir, 'README.md')) as f:
long_description = f.read()
setup(name='segviz',
version='3.1.2',
author='Shuo Han',
description='Show the image and label image overlay.',
long_description=long_description,
long_description_content_type='text/markdown',
author_email='[email protected]',
url='https://github.com/shuohan/segviz',
license='MIT',
packages=find_packages(),
install_requires=['numpy', 'scipy', 'Pillow', 'improc3d', 'jinja2',
'flask', 'nibabel'],
python_requires='>=3.7',
include_package_data=True,
scripts=glob('scripts/*'),
classifiers=['Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent'])