forked from HamedMP/ImageFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (20 loc) · 660 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (20 loc) · 660 Bytes
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
__author__ = 'HANEL'
from setuptools import setup
setup(name='imageflow',
version='0.0.2',
description='Import, Convert (and Soon Train) images with TensorFlow',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7'
],
keywords='tensorflow image cnn',
url='http://hamedmp.github.io/ImageFlow/',
author='Hamed Mohammadpour',
author_email='hamedmp@my.com',
license='MIT',
packages=['imageflow'],
zip_safe=False,
install_requires=['numpy', 'Pillow'],
include_package_data=True,
dependency_links=[''],
)