-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.37 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
# Copyright (C) 2024 RidgeRun, LLC (http://www.ridgerun.com)
# All Rights Reserved.
#
# The contents of this software are proprietary and confidential to RidgeRun,
# LLC. No part of this program may be photocopied, reproduced or translated
# into another programming language without prior written consent of
# RidgeRun, LLC. The user is free to modify the source code after obtaining
# a software license from RidgeRun. All source code changes must be provided
# back to RidgeRun without any encumbrance.
# Install with: python3 -m pip install .
# For developer mode install with: pip install -e .
# pylint: skip-file
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="detection",
version="1.0.1",
author='RidgeRun LLC',
author_email='[email protected]',
description="RidgeRun Detection Microservice",
long_description=long_description,
long_description_content_type="text/markdown",
url='https://ridgerun.com',
packages=setuptools.find_packages(),
python_requires='>=3.0, <4',
install_requires=[
'pydantic',
'flask',
'flask-cors',
'sphinx',
'sphinx_rtd_theme',
'sphinx-mdinclude',
'sahi'
],
entry_points={
'console_scripts': [
'detection=detection.main:main',
],
},
)