-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 742 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 742 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# =============================================================================
# Copyright 2022-2023. Codex Laboratories LLC. All Rights Reserved.
#
# Created By: Tyler Fedrizzi
# Created On: 1 August 2023
#
# Description: Setup File for the SWARM RDS Client core library
# =============================================================================
from setuptools import setup
setup(
name='SWARMRDS',
version="1.4.0",
packages=["SWARMRDS", "SWARMRDS/core", "SWARMRDS/utilities"],
install_requires=['matplotlib', 'tqdm', "py-machineid", "requests", "pandas", "requests"],
url="https://codexlabsllc.github.io/SWARM-RDS-Client-Dev/",
description="SWARM RDS Client",
long_description="""\
SWARM RDS Client\
"""
)