-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
from setuptools import setup, find_packages
from openpibo import __version__ as VERSION
with open('README.rst') as readme_file:
readme = readme_file.read()
requirements = [
'opencv-contrib-python>=4.5.4.60',
'dlib>=19.24.0',
'pyzbar>=0.1.8',
'beautifulsoup4>=4.6.0',
#'konlpy>=0.5.2',
'tweepy>=3.10.0',
'future>=0.18.2',
'pillow>=7.2.0',
'RPi.gpio>=0.7.0',
'pyserial>=3.5',
'requests>=2.28.1',
'tflite-runtime>=2.5.0',
'openpibo_models>=0.4.7',
'openpibo_face_models>=0.4.3',
'openpibo_detect_models>=0.4.4',
'openpibo_dlib_models>=0.4.2',
]
test_requirements = [
]
setup(
name = 'openpibo-python',
version = VERSION,
description = 'openpibo-python package.',
long_description = readme,
author = "circulus",
author_email = 'leeyunjai@circul.us',
url = 'https://github.com/themakerrobot/openpibo-python',
packages = find_packages(),
install_requires = requirements,
keywords = 'openpibo',
long_description_content_type = 'text/markdown',
classifiers = [
'Natural Language :: English',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
test_suite = 'tests',
tests_require = test_requirements
)