add new pcb-tools cli
This commit is contained in:
parent
ea1d14b7f3
commit
8bad573131
3 changed files with 47 additions and 2 deletions
9
setup.py
9
setup.py
|
|
@ -13,7 +13,7 @@ def long_description():
|
|||
|
||||
|
||||
def version():
|
||||
with open(join(abspath(dirname(__file__)), 'gerber/__init__.py')) as fh:
|
||||
with open(join(abspath(dirname(__file__)), 'gerbonara/__init__.py')) as fh:
|
||||
for line in fh:
|
||||
if line.startswith('__version__'):
|
||||
ver = line.split("'")[1]
|
||||
|
|
@ -43,7 +43,12 @@ setup(
|
|||
'Tracker': 'https://gitlab.com/gerbonara/gerbonara/issues',
|
||||
},
|
||||
packages=find_packages(exclude=['tests']),
|
||||
install_requires=[],
|
||||
install_requires=['click'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'gerbonara = gerbonara.cli:cli',
|
||||
],
|
||||
},
|
||||
classifiers=[
|
||||
'Development Status :: 1 - Planning',
|
||||
#'Development Status :: 3 - Alpha',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue