Skip to content

Commit

Permalink
Added distribution setup.py, currently used only to generate the debi…
Browse files Browse the repository at this point in the history
…an package,

but should be usable for normal Python distribution.
  • Loading branch information
set-soft committed Mar 10, 2020
1 parent c18c4b8 commit e42126e
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include MANIFEST.in
include LICENSE
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/python3
from distutils.core import setup

setup(name='kicad-automation-scripts',
version='1.0.0',
description='KiCad Automation Scripts',
long_description='Uses eeschema and pcbnew to automate some tasks.',
author='Scott Bezek, Salvador E. Tropea',
author_email='[email protected]',
url='https://github.com/INTI-CMNB/kicad-automation-scripts/',
packages=['kicad_auto'],
package_dir={'kicad_auto': 'kicad_auto'},
scripts=['src/eeschema_do','src/pcbnew_print_layers','src/pcbnew_run_drc'],
classifiers = ['Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache License 2.0',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3',
'Topic :: Utilities',
],
platforms = 'POSIX',
license = 'Apache License 2.0'
)

0 comments on commit e42126e

Please sign in to comment.