-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 892 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
from setuptools import setup
setup(name='brainimageshare',
version='0.3.20230829.2',
description='Create jpeg with contact overlay from a nifti brain image',
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
],
keywords='share brain image nifti mprage',
url='http://github.com/LabNeuroCogDevel/BrainImageShare',
author='Will Foran',
author_email='[email protected]',
license='GPLv3',
packages=['brainimageshare'],
install_requires=[
'Pillow',
'nibabel',
],
entry_points={
'gui': ['brainimageshare = brainimageshare:brainimageshare'],
},
scripts=['bin/brainimageshare', 'bin/brainimageshare_many'],
#data_files=[('templates', ['templates/overlay.png'])],
include_package_data=True,
zip_safe=False)