Skip to content

Commit

Permalink
pyproject
Browse files Browse the repository at this point in the history
Signed-off-by: Prithvi Kannan <[email protected]>
  • Loading branch information
prithvikannan committed Oct 24, 2024
1 parent aa4f3d1 commit 2879071
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ Create a conda environement and install dev requirements
```
conda create --name databricks-ai-dev-env python=3.10
conda activate databricks-ai-dev-env
pip install -e ".[databricks-dev]"
pip install -e ".[dev]"
pip install -r requirements/lint-requirements.txt
```
17 changes: 3 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@ readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"typing_extensions",
"pydantic"
"pydantic",
"databricks-sdk>=0.34.0",
"pandas",
]

[project.license]
Expand All @@ -28,22 +30,9 @@ include = [
packages = ["src/databricks_ai_bridge"]

[project.optional-dependencies]
databricks = [
"databricks-sdk>=0.34.0",
"pandas",
]
databricks-dev = [
"hatch",
"pytest",
"databricks-sdk>=0.34.0",
"pandas",
"ruff==0.6.4",
]
dev = [
"hatch",
"pytest",
"databricks-sdk>=0.34.0",
"pandas",
"ruff==0.6.4",
]

Expand Down

0 comments on commit 2879071

Please sign in to comment.