forked from obra/kicad-automation-scripts
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added distribution setup.py, currently used only to generate the debi…
…an package, but should be usable for normal Python distribution.
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
include MANIFEST.in | ||
include LICENSE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
) |