-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 997 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
"""
@author: pritesh-mehta
"""
from setuptools import setup, find_packages
setup(name='histogram_standardization',
version='1.0',
description='Histogram standardization (Nyul et al)',
url='https://github.com/pritesh-mehta/histogram_standardization',
python_requires='>=3.6',
author='Pritesh Mehta',
author_email='[email protected]',
license='Apache 2.0',
zip_safe=False,
install_requires=[
'numpy',
'pathlib',
'argparse',
'nibabel',
'six',
],
entry_points={
'console_scripts': [
'hist_train=histogram_standardization.hist_train:process',
'hist_std=histogram_standardization.hist_std:process',
],
},
packages=find_packages(include=['histogram_standardization']),
classifiers=[
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
]
)