|
a |
|
b/setup.py |
|
|
1 |
from setuptools import setup |
|
|
2 |
|
|
|
3 |
def readme(): |
|
|
4 |
with open('README.md') as f: |
|
|
5 |
return f.read() |
|
|
6 |
|
|
|
7 |
setup(name='mediaug', |
|
|
8 |
version='0.1', |
|
|
9 |
description='Image augmentation tools for cell images', |
|
|
10 |
long_description=readme(), |
|
|
11 |
url='https://github.com/smwade/MediAug', |
|
|
12 |
author='Sean Wade', |
|
|
13 |
license='MIT', |
|
|
14 |
author_email='seanwademail@gmail.com', |
|
|
15 |
packages=['mediaug'], |
|
|
16 |
install_requires=[ |
|
|
17 |
'Augmentor', |
|
|
18 |
'numpy', |
|
|
19 |
'Pillow', |
|
|
20 |
'opencv_python', |
|
|
21 |
'tqdm', |
|
|
22 |
'scikit-image', |
|
|
23 |
'click', |
|
|
24 |
'ipython' |
|
|
25 |
], |
|
|
26 |
entry_points={ |
|
|
27 |
'console_scripts': [ |
|
|
28 |
'mediaug=mediaug.command_line:cli' |
|
|
29 |
], |
|
|
30 |
}, |
|
|
31 |
include_package_data=True, |
|
|
32 |
zip_safe=False |
|
|
33 |
) |