-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·32 lines (26 loc) · 1001 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
27
28
29
30
31
32
#!/usr/bin/env python2
import os
import sys
from setuptools import setup
from setuptools import find_packages
long_description = open(os.path.join(sys.path[0], 'README.md')).read()
setup(
name='kicad-python',
version='0.0.2',
author='Thomas Pointhuber',
author_email='[email protected]',
url='https://github.com/pointhi/kicad-python',
description="unofficial abstraction layer for the KiCad API",
long_description=long_description,
long_description_content_type='text/markdown',
license="GPL3+",
install_requires=[],
packages=find_packages('.', exclude=['tests*']),
test_suite='tests',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 2 :: Only', # not because of our implementation, but because of KiCad
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)'
],
)