forked from wonderworks-software/PyFlow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.45 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, find_packages
import sys
import os
sys.path.append(os.path.join(os.path.abspath(os.path.dirname(__file__)), "PyFlow", "Core"))
from version import currentVersion
with open('requirements.txt') as f:
required = f.readlines()
setup(
name="depthai-gui",
version=str(currentVersion()),
packages=find_packages(),
entry_points={
'console_scripts': ['depthai-gui = PyFlow.Scripts:main']
},
include_package_data=True,
author="Luxonis",
long_description=io.open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
author_email="[email protected]",
description="DepthAI Pipeline Builder GUI",
keywords="depthai gui ide pipeline builder node",
url="https://github.com/luxonis/depthai-gui", # project home page
project_urls={
"Bug Tracker": "https://github.com/luxonis/depthai-gui/issues",
"Documentation": "https://docs.luxonis.com/projects/gui/en/latest/",
"Source Code": "https://github.com/luxonis/depthai-gui",
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=required,
)