# -*- 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"])