-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (72 loc) · 2.23 KB
/
pyproject.toml
File metadata and controls
81 lines (72 loc) · 2.23 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kipart"
version = "2.5.0"
description = "Utilities for converting rows of CSV pin data into KiCad symbols and back."
authors = [
{name = "Dave Vandenbout", email = "dave@vdb.name"}
]
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["kipart", "KiCad", "electronic", "circuit", "schematics", "EDA", "CSV", "symbol"]
dependencies = [
"pandas",
"openpyxl",
"simp_sexp",
# "simp_sexp @ git+https://github.com/devbisme/simp_sexp.git@master",
]
[project.urls]
"Homepage" = "https://github.com/devbisme/kipart"
"Source Code" = "https://github.com/devbisme/kipart"
"Documentation" = "https://github.com/devbisme/kipart#readme"
"Bug Tracker" = "https://github.com/devbisme/kipart/issues"
"Changelog" = "https://github.com/devbisme/kipart/blob/master/HISTORY.md"
[project.scripts]
kipart = "kipart.kipart:kipart"
kilib2csv = "kipart.kipart:kilib2csv"
spd2csv = "kipart.spd2csv:main"
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"tox>=4.0.0",
]
[tool.setuptools]
packages = ["kipart"]
[tool.wheel]
universal = true
[tool.pytest]
testpaths = ["tests"]
python_files = ["test_*.py"]
[tool.tox]
legacy_tox_ini = """
[tox]
envlist = py39, py310, py311, py312, py313
isolated_build = True
[testenv]
deps =
pytest>=7.0
commands =
pytest {posargs:tests}
"""