Skip to content

Commit

Permalink
🚨 Fix config formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
albertsgarde committed Sep 27, 2024
1 parent e3e4d4b commit cefa7d8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: CI
on:
on: # yamllint disable-line rule:truthy
push:
branches:
- main
Expand Down
33 changes: 16 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools-scm"]

[project]
name = "eadk_discord"
version = "0.0.1"
authors = [{name = "albertsgarde", email = "[email protected]"}]
description = "A Discord bot the EADK discord server"
authors = [{ name = "albertsgarde", email = "[email protected]" }]
license = { file = "LICENSE" }
dynamic = ["dependencies", "optional-dependencies"]
license = {file = "LICENSE"}
name = "eadk_discord"
readme = "README.md"
requires-python = ">=3.11"
dynamic = ["dependencies", "optional-dependencies"]

[tool.setuptools]
packages = ["eadk_discord"]

[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }

[tool.setuptools.dynamic.optional-dependencies]
dev = { file = ['requirements_dev.txt'] }
version = "0.0.1"

[tool.pytest.ini_options]
pythonpath = ["eadk_discord"]


[tool.ruff]
line-length = 120

[tool.ruff.lint]
select = ["I", "E", "F", "W", "N", "B"]
ignore = ["D203", "D213", "F722"]
select = ["I", "E", "F", "W", "N", "B"]
isort.known-first-party = ["eadk_discord"]

[tool.setuptools]
packages = ["eadk_discord"]

[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}

[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ['requirements_dev.txt']}

0 comments on commit cefa7d8

Please sign in to comment.