-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
32 lines (31 loc) · 904 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
#!/usr/bin/env python
# -*- coding: UTF-8 -*-import os
from setuptools import setup
import os
version_file = open(os.path.join('.', 'version.txt'))
setup(
name = 'videoai-sdk',
version=version_file.read().strip(),
description='An SDK for accessing VideoAI',
keywords='video processing, machine learning, security, analytics, face-recognition',
license='Commercial',
author='Kieron Messer',
author_email='[email protected]',
packages =['videoai',
'videoai.recognition',
],
scripts =[],
platforms='any',
install_requires=[
'requests>=2.11',
'configparser>=3.5',
'oauth2>=1.9',
'oauth2client>=1.2'
],
include_package_data=True,
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 2.7',
'Topic :: Video Processing :: Analytics',
],
)