generated from broomva/databricks_session
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: fixing setup to work with dagster deploy
- Loading branch information
Showing
1 changed file
with
87 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
# 'Development Status :: 3 - Alpha' | ||
# 'Development Status :: 4 - Beta' | ||
# 'Development Status :: 5 - Production/Stable' | ||
release_status = "Development Status :: 3 - Alpha" | ||
# release_status = "Development Status :: 3 - Alpha" | ||
|
||
# with open("requirements.txt") as f: | ||
# required = f.read().splitlines() | ||
|
@@ -58,111 +58,115 @@ | |
# ] | ||
|
||
|
||
# setuptools.setup( | ||
# name="vortex-python", | ||
# packages=find_packages(exclude=["vortex_tests"]), | ||
# install_requires=[ | ||
# "dagster", | ||
# "dagster-cloud", | ||
# "boto3", | ||
# "pandas", | ||
# "matplotlib", | ||
# "langchain", | ||
# "langchain_openai", | ||
# "openai", | ||
# "sqlalchemy", | ||
# "psycopg2-binary", | ||
# "pyautogen", | ||
# "bs4", | ||
# "langchainhub", | ||
# "langchain-community", | ||
# "selenium", | ||
# "html2text", | ||
# "chainlit", | ||
# "faiss-cpu", | ||
# "chromadb", | ||
# "tiktoken", | ||
# "pymupdf", | ||
# # "duckduckgo", | ||
# "wikipedia", | ||
# "sendgrid", | ||
# ], | ||
# extras_require={"dev": ["dagster-webserver", "pytest"]}, | ||
# ) | ||
|
||
|
||
setuptools.setup( | ||
name="vortex-python", | ||
version="0.1.2", | ||
description="Versatile Orchestrated Execution Engine for Data & AI Pipelines", | ||
# long_description=readme, | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(exclude=["vortex_tests"]), | ||
author="Carlos D. Escobar-Valbuena", | ||
author_email="[email protected]", | ||
license="MIT", | ||
classifiers=[ | ||
release_status, | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 3 - Alpha", | ||
"Intended Audience :: Developers", | ||
"Programming Language :: Python" "Programming Language :: Python :: 3.11", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
packages=find_packages(exclude=["vortex_tests"]), | ||
install_requires=[ | ||
"pydantic", | ||
"python-dotenv", | ||
"typing-extensions", | ||
"urllib3", | ||
"dagster", | ||
"dagster-cloud", | ||
"boto3", | ||
"pandas", | ||
"matplotlib", | ||
"langchain", | ||
"langchain-openai", | ||
"langchain_openai", | ||
"openai", | ||
"sqlalchemy", | ||
"psycopg2-binary", | ||
"pyautogen", | ||
"bs4", | ||
"dagster-webserver", | ||
"langchainhub", | ||
"langchain-community", | ||
"selenium", | ||
"html2text", | ||
"chainlit", | ||
"faiss-cpu", | ||
"chromadb", | ||
"tiktoken", | ||
"pymupdf", | ||
"duckduckgo-search", | ||
# "duckduckgo", | ||
"wikipedia", | ||
"mlflow", | ||
"sendgrid", | ||
], | ||
extras_require={"dev": ["dagster-webserver", "pytest"]}, | ||
python_requires=">=3.8", | ||
include_package_data=True, | ||
setup_requires=["setuptools", "wheel"], | ||
tests_require=["pytest"], | ||
test_suite="tests", | ||
zip_safe=False, | ||
url="https://github.com/Broomva/vortex", | ||
package_data={ | ||
"vortex": [ | ||
"*.json", | ||
"*.yaml", | ||
"*.sql", | ||
"*.csv", | ||
"*.txt", | ||
"*.md", | ||
"*.html", | ||
"*.css", | ||
"*.pkl", | ||
"*.faiss", | ||
], | ||
}, | ||
# data_files=data_files_structure, | ||
py_modules=["main"], | ||
entry_points={ | ||
"console_scripts": [ | ||
"vortex=main:main", | ||
], | ||
}, | ||
) | ||
|
||
|
||
# setuptools.setup( | ||
# name="vortex-python", | ||
# version="0.1.2", | ||
# description="Versatile Orchestrated Execution Engine for Data & AI Pipelines", | ||
# # long_description=readme, | ||
# long_description_content_type="text/markdown", | ||
# author="Carlos D. Escobar-Valbuena", | ||
# author_email="[email protected]", | ||
# license="MIT", | ||
# classifiers=[ | ||
# release_status, | ||
# "License :: OSI Approved :: MIT License", | ||
# "Operating System :: OS Independent", | ||
# "Development Status :: 3 - Alpha", | ||
# "Intended Audience :: Developers", | ||
# "Programming Language :: Python" "Programming Language :: Python :: 3.11", | ||
# "Topic :: Software Development :: Libraries :: Python Modules", | ||
# ], | ||
# packages=find_packages(exclude=["vortex_tests"]), | ||
# install_requires=[ | ||
# "pydantic", | ||
# "python-dotenv", | ||
# "typing-extensions", | ||
# "urllib3", | ||
# "dagster", | ||
# "pandas", | ||
# "langchain", | ||
# "langchain-openai", | ||
# "openai", | ||
# "sqlalchemy", | ||
# "psycopg2-binary", | ||
# "bs4", | ||
# "dagster-webserver", | ||
# "langchainhub", | ||
# "selenium", | ||
# "html2text", | ||
# "chainlit", | ||
# "chromadb", | ||
# "tiktoken", | ||
# "pymupdf", | ||
# "duckduckgo-search", | ||
# "wikipedia", | ||
# "mlflow", | ||
# "sendgrid", | ||
# ], | ||
# extras_require={"dev": ["dagster-webserver", "pytest"]}, | ||
# python_requires=">=3.8", | ||
# include_package_data=True, | ||
# setup_requires=["setuptools", "wheel"], | ||
# tests_require=["pytest"], | ||
# test_suite="tests", | ||
# zip_safe=False, | ||
# url="https://github.com/Broomva/vortex", | ||
# package_data={ | ||
# "vortex": [ | ||
# "*.json", | ||
# "*.yaml", | ||
# "*.sql", | ||
# "*.csv", | ||
# "*.txt", | ||
# "*.md", | ||
# "*.html", | ||
# "*.css", | ||
# "*.pkl", | ||
# "*.faiss", | ||
# ], | ||
# }, | ||
# # data_files=data_files_structure, | ||
# py_modules=["main"], | ||
# entry_points={ | ||
# "console_scripts": [ | ||
# "vortex=main:main", | ||
# ], | ||
# }, | ||
# ) |