-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (46 loc) · 1.09 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[project]
name = "nccapy"
authors = [
{ name="Jon Macey", email="[email protected]" },
]
description = "nccapy is a python package use for teaching graphics at the NCCA"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = {file = "LICENSE.txt"}
version = "0.0.12"
dependencies = [
"pillow",
"pygame",
"numpy"]
[project.urls]
Homepage = "https://github.com/NCCA/nccapy"
Issues = "https://github.com/NCCA/nccapy/issues"
[build-system]
requires = ["setuptools>=67.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
[tool.mypy]
disable_error_code = "import-untyped"
warn_return_any = true
warn_unused_configs = true
follow_imports="skip"
exclude = "tests/*"
namespace_packages = true
explicit_package_bases = true
[tool.black]
line-length = 99
target-version = [ "py39", "py310", "py311","py312"]
skip-magic-trailing-comma = true
[tool.isort]
py_version = 39
profile = "black"
line_length = 99
combine_as_imports = true
skip_gitignore = true