Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pyproject.toml license #61

Merged
merged 2 commits into from
Mar 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = "polarify"
description = "Simplifying conditional Polars Expressions with Python 🐍 🐻‍❄️"
version = "0.1.5"
readme = "README.md"
license = "MIT"
license = {file = "LICENSE"}
requires-python = ">=3.9"
authors = [
{ name = "Bela Stoyan", email = "bela.stoyan@quantco.com" },
Expand Down Expand Up @@ -36,6 +36,7 @@ include = [
line-length = 100
target-version = "py39"

[tool.ruff.lint]
select = [
# pyflakes
"F",
Expand Down Expand Up @@ -71,9 +72,3 @@ ignore = [
[tool.ruff.format]
quote-style = "double"
indent-style = "space"

[tool.mypy]
python_version = "3.9"
ignore_missing_imports = true
no_implicit_optional = true
check_untyped_defs = true