Skip to content

Commit

Permalink
Update outdated pyproject.toml fields
Browse files Browse the repository at this point in the history
  • Loading branch information
manzt committed Oct 18, 2024
1 parent a40d8d2 commit 2a1b71b
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 31 deletions.
41 changes: 12 additions & 29 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,52 +5,35 @@ build-backend = "hatchling.build"
[project]
name = "higlass-schema"
description = "Pydantic models for HiGlass"
authors = [
{ name = "Trevor Manz", email = "trevor.j.manz@gmail.com" }
]
authors = [{ name = "Trevor Manz", email = "trevor.j.manz@gmail.com" }]
license = { text = "MIT" }
readme = "README.md"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
]
urls = { homepage = "https://github.com/higlass/higlass-schema" }
requires-python = ">=3.8"
dynamic = ["version"]
dependencies = [
"pydantic>=1.10,<2.0",
"rich>=13.3.3",
]
dependencies = ["pydantic>=1.10,<2.0", "rich>=13.0.0"]

[project.urls]
homepage = "https://github.com/higlass/higlass-schema"

[tool.uv]
dev-dependencies = ["black", "pytest", "ruff"]

[project.scripts]
higlass-schema = "higlass_schema.cli:main"

[tool.hatch.build]
sources = ["src"]

[tool.hatch.version]
source = "vcs"

# https://github.com/charliermarsh/ruff
[tool.ruff]
line-length = 88
target-version = "py38"
src = ["src", "tests"]

[tool.ruff.lint]
extend-select = [
"E", # style errors
"F", # flakes
"I", # isort
"UP", # pyupgrade
"RUF", # ruff-specific rules
"E", # style errors
"F", # flakes
"I", # isort
"UP", # pyupgrade
"RUF", # ruff-specific rules
]
4 changes: 2 additions & 2 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 2a1b71b

Please sign in to comment.