-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathpyproject.toml
More file actions
53 lines (48 loc) · 1.18 KB
/
Copy pathpyproject.toml
File metadata and controls
53 lines (48 loc) · 1.18 KB
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
53
[project]
name = "JLC2KiCadLib"
version = "1.3.0"
description = "JLC2KiCad_lib is a python script that generate a component library (symbol, footprint and 3D model) for KiCad from the JLCPCB/easyEDA library."
readme = "README.md"
requires-python = ">=3.8"
dependencies = ["KicadModTree", "requests"]
authors = [
{name = "TousstNicolas"}
]
classifiers = [
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
]
license = "MIT"
license-files = ["LICENCE"]
[project.scripts]
JLC2KiCadLib = "JLC2KiCadLib.JLC2KiCadLib:main"
[project.urls]
Homepage = "https://github.com/TousstNicolas/JLC2KiCad_lib"
Issues = "https://github.com/TousstNicolas/JLC2KiCad_lib/issues"
[dependency-groups]
test = [
"coverage>=7.6.1",
"pytest>=8.0",
"pytest-cov>=5.0.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["F841"]