-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
39 lines (36 loc) · 984 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
27
28
29
30
31
32
33
34
35
36
37
38
39
#!/usr/bin/python
# -*- coding: utf-8 -*-
from setuptools import setup
with open("README.rst", "r") as f:
long_description = f.read()
setup(
name='image-analyzer',
author='QeeqBox',
author_email='gigaqeeq@gmail.com',
description="Image analyzer is an interface that simplifies interaction with image-related deep learning models",
long_description=long_description,
version='0.1',
license='AGPL-3.0',
license_files = ('LICENSE'),
url='https://github.com/qeeqbox/image-analyzer',
packages=['imageanalyzer'],
package_data={'imageanalyzer': ['../data/*']},
install_requires=[
'tensorflow',
'requests',
'Pillow',
'bs4',
'galeodes',
'keras',
'opencv-python',
'numpy',
'asyncio',
'aiohttp'
],
python_requires='>=3.5',
entry_points={
"console_scripts": [
'image-analyzer=imageanalyzer.__main__:main_logic'
]
}
)