-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
65 lines (59 loc) · 1.97 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
60
61
62
63
64
65
from setuptools import setup, find_packages
from visual_perception import __version__
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='visual_perception',
version = __version__,
description='A High Level Python Library for Visual Recognition ',
url="https://github.com/SSusantAchary/Visual-Perception",
author="SusantAchary",
author_email="sache.meet@yahoo.com",
maintainer="Susant Achary",
maintainer_email="sache.meet@yahoo.com",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
python_requires='>=3.5, <4',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Scientific/Engineering :: Image Processing',
'Topic :: Scientific/Engineering :: Image Recognition',
'Topic :: Software Development :: Libraries :: Python Modules'
],
keywords=[
"object detection",
"computer vision",
'yolo',
'yolov4',
'tinyyolo'],
install_requires=[
"tensorflow",
'keras',
'opencv-python',
'numpy',
'pillow',
'matplotlib',
'pandas',
'scikit-learn',
'progressbar2',
'scipy',
'h5py',
'imgaug',
'scikit-image',
'configobj',
],
project_urls={
'Bug Reports': 'https://github.com/SSusantAchary/Visual-Perception/issues',
'Source': 'https://github.com/SSusantAchary/Visual-Perception/'},
)