forked from KiCad/kicad-python
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
26 lines (23 loc) · 855 Bytes
/
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
26
#!/usr/bin/env python
import setuptools
try:
reqs = open('requirements.txt', 'r').read().splitlines()
except IOError:
reqs = []
def readme():
with open('README.md', 'r') as fx:
return fx.read()
setuptools.setup(
name='kigadgets',
version='0.4.2',
description='Cross-version python wrapper for KiCAD pcbnew',
long_description=readme(),
long_description_content_type='text/markdown',
author='Piers Titus van der Torren, Miguel Angel Ajo, Hasan Yavuz Ozderya, Alex Tait',
author_email='[email protected]',
license='GPL v2',
url='https://github.com/atait/kicad-python/',
packages=setuptools.find_packages(exclude=['tests']),
install_requires=reqs,
entry_points={'console_scripts': 'link_kicad_python_to_pcbnew=kicad.environment:cl_main'},
)