forked from luxonis/robothub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (39 loc) · 1.41 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
import io
from setuptools import setup
long_description = io.open('README.md', encoding='utf-8').read()
# Read the requirements from requirements.txt
# with open('requirements.txt') as f:
# requirements = f.read().splitlines()
setup(
name='robothub',
version='2.6.0',
description='RobotHub integration library',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://www.luxonis.com/',
license='MIT',
keywords='robothub camera robot hub connect agent depthai sdk',
author='Luxonis',
author_email='[email protected]',
packages=['robothub'],
package_dir={'': 'src'}, # https://stackoverflow.com/a/67238346/5494277
include_package_data=True,
# install_requires=requirements,
project_urls={
'Homepage': 'https://github.com/luxonis/robothub/',
'Documentation': 'https://hub-docs.luxonis.com/',
},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Information Technology',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
'License :: OSI Approved :: MIT License',
'Operating System :: Unix',
'Topic :: Software Development',
'Topic :: Scientific/Engineering',
],
)