Skip to content

Commit

Permalink
Include pymafia_config in poetry
Browse files Browse the repository at this point in the history
  • Loading branch information
MrFizzyBubbs committed Jul 27, 2023
1 parent 1620f2d commit 183c529
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
[tool.poetry]
name = "pymafia"
version = "0.0.0" # This is the standard placeholder for poetry-dynamic-versioning
version = "0.0.0" # This is the standard placeholder for poetry-dynamic-versioning
description = "A Python module and bridge for reflecting KoLmafia's Java environment"
license = "MIT"
authors = ["MrFizzyBubbs <[email protected]>"]
readme = "README.md"
repository = "https://github.com/MrFizzyBubbs/pymafia"
include = ["src/pymafia_config.py"]

[tool.poetry.dependencies]
python = "^3.10"
Expand All @@ -29,16 +30,16 @@ profile = "black"

[tool.ruff]
ignore = [
"E501", # Line too long, handled by black
"E501", # Line too long, handled by black
]

[tool.ruff.per-file-ignores]
"__init__.py" = [
"F401", # Unused import
"F403", # Wildcard import
"F401", # Unused import
"F403", # Wildcard import
]
"tests/__init__.py" = [
"E722", # Bare except
"E722", # Bare except
]

[tool.mypy]
Expand Down

0 comments on commit 183c529

Please sign in to comment.