-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 812 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
import setuptools
setuptools.setup(
name='ncs_face_detection',
scripts=['ncs_face'],
version='0.1.3',
license="licenses.txt",
author="Tuan LM",
author_email="tuanlm@greenglobal.vn",
description="Movidius Video Object Scalable",
long_description=open("README.md", "r").read(),
long_description_content_type="text/markdown",
url="https://github.com/gg-tuanlm/python_packaging_demo",
include_package_data=True,
packages=setuptools.find_packages(),
data_files=[
("/ncs_face_detection/graphs", ["graphs/ssd-face.graph"]),
],
install_requires=[
"numpy",
"mvnc"
],
classifiers=[
"Programming Language:: Python :: 3"
"License :: OSI Approved :: MIT License",
"Operating system :: OS Independent",
],
)