-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (24 loc) · 993 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
@author: arshadzahangirchowdhury
"""
from setuptools import setup, find_packages
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='roifinder',
url='https://github.com/arshadzahangirchowdhury/ROI-Finder',
author='M Arshad Zahangir Chowdhury',
author_email='[email protected]',
# Needed to actually package something
packages=find_packages(exclude=['test']),
# packages= ['roifinder', 'roifinder.misc', 'roifinder.src'],
# Needed for dependencies
install_requires=['numpy', 'pandas', 'scipy', 'h5py', 'matplotlib', 'opencv-python',\
'scikit-image','scikit-learn', 'seaborn' ,'ipython'],
version=open('VERSION').read().strip(),
# version="1.0",
license='BSD',
description='XRF-ROI-Finder: Machine learning to guide region-of-interest scanning for X-ray fluoroscence microscopy',
# long_description=open('README.md').read(),
)