We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f298a1 commit cd5545dCopy full SHA for cd5545d
2 files changed
pyproject.toml
@@ -0,0 +1,21 @@
1
+[tool.poetry]
2
+name = "python-mini-project"
3
+version = "0.1.0"
4
+description = "A collection of python mini projects"
5
+authors = ["Open Source Contributors"]
6
+
7
+[tool.poetry.dependencies]
8
+python = ">=3.10"
9
+pygame = "2.6.1"
10
+numpy = "1.26.4"
11
+matplotlib = "3.8.3"
12
+pillow = "12.2.0"
13
+nltk = "3.9.4"
14
+requests = "2.34.2"
15
16
+[tool.poetry.group.dev.dependencies]
17
+pytest = ">=8.0.0"
18
19
+[build-system]
20
+requires = ["poetry-core>=1.0.0"]
21
+build-backend = "poetry.core.masonry.api"
pytest.ini
@@ -0,0 +1,6 @@
+[pytest]
+addopts = -v --tb=short
+testpaths = tests
+python_files = test_*.py
+python_classes = Test*
+python_functions = test_*
0 commit comments