forked from obra/kicad-automation-scripts
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
executable file
·25 lines (24 loc) · 1.02 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
#!/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_do'],
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',
)