-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
36 lines (34 loc) · 1.21 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
from setuptools import setup
from setuptools import find_packages
import os.path
name = 'videoflow_contrib_detector_tf'
install_requires = ['videoflow']
setup(name=name,
version='0.1',
description='Tensorflow Detection Component for Videoflow Library',
author='Jadiel de Armas',
author_email='jadielam@gmail.com',
url='https://github.com/videoflow/videoflow-contrib',
license='MIT',
packages = ['videoflow_contrib.detector_tf'],
zip_safe = False,
install_requires=install_requires,
extras_require={
'visualize': ['pydot>=1.2.0'],
'tests': ['pytest',
'pytest-pep8',
'pytest-xdist',
'pytest-cov'],
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)