Skip to content

Commit

Permalink
fix: fixing setup to work with dagster deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
broomva committed Feb 2, 2024
1 parent c140c73 commit 875093c
Showing 1 changed file with 87 additions and 83 deletions.
170 changes: 87 additions & 83 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down Expand Up @@ -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",
# ],
# },
# )

0 comments on commit 875093c

Please sign in to comment.