-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1620f2d
commit 183c529
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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] | ||
|