Skip to content

Commit 22d9206

Browse files
author
fieryhenry
committed
Basic project changes
1 parent 50fcd6f commit 22d9206

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
*SAVE_DATA*
22
/dist
3-
*.egg
4-
*.egg-info
53
__pychache__
64
*.pyc
75
/tests/saves/*
8-
/.vscode
6+
.*
7+
*.egg*
8+
*BACKUP_META_DATA*
9+
tests.txt
10+
src/BCSFE_Python/files/item_tracker.json
11+
src/BCSFE_Python/files/game_data

pyproject.toml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
[build-system]
2-
requires = ["setuptools>=42"]
3-
build-backend = "setuptools.build_meta"
2+
requires = ["setuptools>=42", "wheel"]
3+
build-backend = "setuptools.build_meta"
4+
5+
[tool.pytest.ini_options]
6+
addopts = ["--cov=BCSFE_Python"]
7+
testpaths = ["tests"]
8+
9+
[tool.mypi]
10+
mypi_path = "src"

requirements.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
colored==1.4.3
2+
python_dateutil==2.8.2
3+
requests==2.25.1

0 commit comments

Comments
 (0)