-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
29 lines (27 loc) · 783 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
from setuptools import setup, find_packages
with open('./README.md', encoding='utf-8') as f:
README = f.read()
setup(
name="eye_game",
version="0.1",
keywords=[
"eye", "eyeball", "eye tracking",
"eyeball direction", 'eyeball position', 'gaze direction'
],
description="A python module for determining gaze direction",
long_description=README,
long_description_content_type='text/markdown',
license="MIT Licence",
url="https://github.com/WenjieDu/eye_game",
author="Wenjie Du",
author_email="[email protected]",
packages=find_packages(),
include_package_data=True,
platforms=["any"],
install_requires=[
"face_recognition",
"opencv-python",
"pillow",
"numpy",
],
)