-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 922 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
# long_description = """
# # intensipy
# Normalize intensity values in 3D image stacks.
# Python implementation of the Intensify3D algorithm originally developed by [Yoyan et al](https://www.nature.com/articles/s41598-018-22489-1).
# """
with open("README.md", "r") as f:
long_description = f.read()
setup(name='intensipy',
version='0.1.0',
description="Normalize intensity values in 3D images.",
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/dakota-hawkins/intensipy',
author='Dakota Y. Hawkins',
author_email='[email protected]',
license='BSD',
packages=['intensipy'],
install_requires=['numpy',
'scipy',
'scikit-image',
'statsmodels'],
classifiers=["Programming Language :: Python :: 3"])