-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
47 lines (39 loc) · 1.25 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jj_wingman"
version = "0.22.2"
authors = [
{ name="Jet", email="[email protected]" },
]
description = "Wingman library for AI projects."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["numpy", "wandb", "pyyaml", "prefetch-generator"]
keywords = ["Machine Learning"]
license = { file="./LICENSE.txt" }
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["wingman", "wingman.*"]
[project.scripts]
wingman-generate-yaml = "wingman:cli_scripts.generate_yaml"
wingman-compress-weights = "wingman:cli_scripts.compress_weights"
[project.urls]
"Homepage" = "https://github.com/jjshoots/Wingman"
[tool.setuptools.package-data]
wingman = ["*.yaml"]
[tool.pyright]
# This is required as the CI pre-commit does not download the module (i.e. numpy, pygame, box2d)
# Therefore, we have to ignore missing imports
reportMissingImports = "none"
[tool.ruff.lint]
# pyflakes, pycodestyle, isort
ignore = ["D401", "D203", "D213"]
select = ["E4", "E7", "E9", "F", "I", "D"]