-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (33 loc) · 1.21 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
# 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: python3 setup.py develop --user.
# pylint: skip-file
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="rrms_utils",
version="1.0.0",
author='RidgeRun LLC',
author_email='[email protected]',
description="RidgeRun Microservices Utils",
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=[
'sphinx',
'sphinx_rtd_theme',
'pydantic',
'redis'
],
)