GRAPHIC: New Entity Operations™ Alpha Logo

EntityScript



setup



Depending on your system/platform, the setup may need to be modified to include appropriate hooks. PIDs work differently on computer systems too so if you're getting a specific error, check what kind of PID interface you're using. The default is for more of a Linux type of system. If you need windows, you'll have to alter the PID channel accordingly AFTER setup.


# -*- coding: utf-8 -*-
"""
COPYRIGHT (C) 2020-2023 NEW ENTITY OPERATIONS INC. ALL RIGHTS RESERVED
INSTANCE: setup
MODIFIED: 2023/05/15
OVERVIEW: Setup details for the package
"""
__version__ = "0.0.8"
__author__ = "Ryan McKenna"
__copyright__ = "Copyright (C) 2020-2023 New Entity Operations Inc."
__credits__ = [
 "Ryan McKenna",
 "New Entity Operations Inc.", "New Entity Operations, LLC"]
__email__ = "Operator@NewEntityOperations.com"
__license__ = "New Entity License"
__maintainer__ = "Ryan McKenna"
__status__ = "Production"

## import MODE.*
from MODE.facilities import (path, setup, SLUG_README, tR)

## Meta-data
def read(SLUG_README):
 return open(path.join(path.dirname(__file__), SLUG_README)).read()

setup(name="TRINE",
 author="New Entity Operations Inc.",
 author_email="Operator@NewEntityOperations.com",
 maintainer="Ryan McKenna",
 maintainer_email="Operator@NewEntityOperations.com",
 url="https://www.NewEntityOperations.com/trine/",
 license_file="NEW ENTITY LICENSE",
 version="0.0.8",
 packages=["TRINE"],
 provides=["C.ORE", "TRINE", "NOVASTORE"],
 keywords=[
  "abstraction", "AI", "AIREP", "BROWSEME", "browser", "COGNITIVE ORE",
  "C.ORE", "container", "CORE.HOST", "csv", "data", "dataframe", "datascript",
  "engine", "entity", "EVENTLOLLI",
  "EntityScript", "file system", "framework", "generator",
  "IPDVC", "image browser", "image viewer", "json", "lockerlinks", "llm"
  "meta", "meta-vetting",
  "New Entity", "New Entity Operations", "New Entity Operations, Inc.",
  "OpenPackager", "pandas", "processing", "processing engine",
  "python", "python3", "python3.10",
  "REMINDME", "Resource Monitor", "TRINE", "vector processor",
  "virtualization", "web browser"],
 classifiers=[
  "Programming Language :: Python :: 3.10",
  "Natural Language :: English",
  "Operating System :: Posix",
  "License :: New Entity License :: proprietary/mixed"
  ],
 description=[
  tR.text_overview
 ],
 extras_require ={
  "data_advanced": "psycopg2",
  "imaging_advanded": "pillow",
  "vector_processor": "pandas",
  "web_instance": ["flask", "flask-login", "flask_wtf", "uwsgi"]
 }
 long_description= read(SLUG_README),
 requires=[],
 platforms=["macOS", "Linux", "Windows 32-64"])



Return HOME