forked from IntrospectData/facial-expression-recognizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.33 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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='id-fer',
version='0.4.0',
license='MIT',
description='Takes an image or video/stream as input and returns detected faces and emotions.',
long_description=long_description,
long_description_content_type='text/markdown',
author='Bradley Reimers',
author_email = '[email protected]',
url='https://github.com/IntrospectData/id-fer-capture',
download_url='https://github.com/IntrospectData/facial-expression-recognizer/archive/0.4.0.tar.gz',
keywords = ['facial', 'detection', 'expression', 'emotion', 'recognition', 'ai', 'machine', 'vision', 'artificial', 'intelligence'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'numpy',
'opencv-python',
'python-magic',
'tensorflow',
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Scientific/Engineering :: Image Recognition',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
)