forked from dlharmon/footgen
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 692 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from distutils.core import setup
classifiers = [
'Development Status :: 3',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering',
]
setup(name='footgen',
version='0.1a',
description="Footprint generator for Kicad and gEDA in Python",
author="Darrell Harmon",
author_email="darrell@harmoninstruments.com",
url="http://dlharmon.com/geda/footgen.html",
packages=['footgen'],
license='GPLv3+',
classifiers=classifiers,
)