-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (47 loc) · 1.45 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
[tool.poetry]
name = "DipTraceGenerator"
version = "0.1.0"
description = "This is the python library for generating the DipTrace components and patterns libraries."
license = "MIT"
readme = "README.md"
repository = "https://github.com/kolod/DipTrace-Generator"
homepage = "https://github.com/kolod/DipTrace-Generator"
keywords = ["DipTrace", "PCB"]
authors = [
"Oleksandr Kolodkin <[email protected]>",
]
maintainers = [
"Oleksandr Kolodkin <[email protected]>",
]
include = ["LICENSE", "README.md"]
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [{include="DipTraceGenerator"}]
[tool.poetry.dependencies]
python = ">=3.8, <4.0"
lxml = "^5.2.1"
colorama = "^0.4.6"
typing-extensions = {version = "^4.11.0", python = "<3.11"}
pillow = "^10.3.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
pytest-cov = "^5.0.0"
[tool.poetry.group.examples.dependencies]
tqdm = "^4.66.2"
[tool.poetry.scripts]
examples = "Examples.all:main"
[tool.coverage.report]
exclude_also = [
"if __name__ == .__main__.:"
]