-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathsetup.py
30 lines (26 loc) · 1.09 KB
/
setup.py
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
import sys
import os
from setuptools import setup, find_packages
from JLC2KiCadLib.__version__ import __version__
long_description = open(os.path.join(sys.path[0], "README.md")).read()
setup(
name="JLC2KiCadLib",
description="JLC2KiCad_lib is a python script that generate a component library (symbol, footprint and 3D model) for KiCad from the JLCPCB/easyEDA library.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/TousstNicolas/JLC2KiCad_lib",
version=__version__,
author="TousstNicolas",
license="MIT",
install_requires=["KicadModTree", "requests"],
packages_dir={"JLC2KiCadLib": "JLC2KiCadLib"},
packages=find_packages(exclude=[]),
entry_points={"console_scripts": ["JLC2KiCadLib = JLC2KiCadLib.JLC2KiCadLib:main"]},
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
],
python_requires=">=3.6",
)