-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (56 loc) · 1.76 KB
/
Copy pathsetup.py
File metadata and controls
59 lines (56 loc) · 1.76 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
#!/usr/bin/env python3
"""Setup script for EMC Auditor KiCad Plugin."""
from setuptools import setup, find_packages
from pathlib import Path
readme_file = Path(__file__).parent / "README.md"
if readme_file.exists():
with open(readme_file, "r", encoding="utf-8") as f:
long_description = f.read()
else:
long_description = "EMC/DRC verification plugin for KiCad 9.0+"
setup(
name="emc-auditor",
version="1.0.0",
author="EMC Auditor Team",
description="EMC/DRC verification plugin for KiCad 9.0+",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RolandWa/KiCAD_Custom_DRC",
package_dir={"": "src"},
py_modules=[
"emc_auditor_plugin",
"clearance_creepage",
"decoupling",
"emi_filtering",
"ground_plane",
"signal_integrity",
"via_stitching",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
python_requires=">=3.8",
install_requires=[
'tomli>=1.2.0; python_version < "3.11"',
],
extras_require={
"dev": [
"pytest>=6.0.0",
"pytest-cov>=2.0.0",
],
},
include_package_data=True,
package_data={
"": ["emc_rules.toml", "emc_icon.png"],
},
zip_safe=False,
)