-
Notifications
You must be signed in to change notification settings - Fork 61
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (20 loc) · 722 Bytes
/
setup.py
File metadata and controls
21 lines (20 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
from setuptools import setup, find_packages
from jlc_kicad_tools import __version__
setup(
name='jlc-kicad-tools',
version=__version__,
description='JLCKicadTools is a tool aims to work with JLCPCB assembly service featuring KiCad 5',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
url='https://github.com/matthewlai/JLCKicadTools',
author='Matthew Lai',
license='GPL3',
packages=find_packages(),
include_package_data=True,
python_requires='>=3.7',
install_requires=['logzero>=1.5'],
entry_points={"console_scripts": [
"jlc-kicad-tools = jlc_kicad_tools.generate_jlc_files:main"
]
},
)