-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.41 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.41 KB
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
from setuptools import setup, find_packages
import codecs
import os
here = os.path.abspath(os.path.dirname(__file__))
from pathlib import Path
this_directory = Path(__file__).parent
long_description = open(os.path.join(here,'README.md'), encoding="utf8").read()
VERSION = '0.0.20.1'
DESCRIPTION = 'Sign Language Recognition tool.'
LONG_DESCRIPTION = 'Sign Language Recognition tool. It works in real time using additionally OpenCV and Mediapipe libraries.'
# Setting up
setup(
name="SignLanguageRecognition",
version=VERSION,
author="Jan Binkowski",
author_email="<jan.binkowski@wp.pl>",
description=DESCRIPTION,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/JanBinkowski/SignLanguageRecognition",
project_urls={
"Bug Tracker": "https://github.com/JanBinkowski/SignLanguageRecognition",
},
classifiers=[
"Development Status :: 1 - Planning",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['opencv-python', 'mediapipe', 'numpy', 'tensorflow'],
keywords=['python', 'sign language', 'sign language recognition', 'recognition in real time', 'action recognition'],
package_dir={"": "src"},
packages=find_packages(where="src"),
python_requires=">=3.6",
include_package_data=True,
)