This repository was archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathsetup.py
59 lines (54 loc) · 1.99 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
long_description = '''
Image ATM is a one-click tool that automates the workflow of a typical
image classification pipeline in an opinionated way, this includes:
- Preprocessing and validating input images and labels
- Starting/terminating cloud instance with GPU support
- Training
- Model evaluation
Read the documentation at: https://idealo.github.io/imageatm/
Image ATM is compatible with Python 3.6 and is distributed under the Apache 2.0 license.
'''
setup(
name='imageatm',
version='0.1.1',
author='Christopher Lennan, Malgorzata Adamczyk, Gunar Maiwald, Dat Tran',
description='Image classification for everyone',
long_description=long_description,
license='Apache 2.0',
install_requires=[
'Keras==2.3.*',
'keras-vis>=0.4.1',
'tensorflow==2.0.*',
'awscli',
'Click',
'h5py',
'matplotlib',
'papermill',
'Pillow',
'scikit-learn',
'scipy==1.1.*',
'tqdm',
'yarl',
],
extras_require={
'tests': ['pytest==4.3.0', 'pytest-cov==2.6.1', 'pytest-mock', 'mock', 'mypy'],
'docs': ['mkdocs==1.0.4', 'mkdocs-material==4.0.2'],
'dev': ['bumpversion==0.5.3'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
],
packages=find_packages(exclude=('tests',)),
entry_points={'console_scripts': ['imageatm=imageatm.client.client:cli']},
include_package_data=True,
)