forked from pointhi/kicad-footprint-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·38 lines (31 loc) · 1.15 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
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python3
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()
requirements = map(str.strip, open('requirements.txt').readlines())
dev_requirements = map(str.strip, open('requirements-dev.txt').readlines())
setup(
name='KicadModTree',
version='1.0.3',
author='Thomas Pointhuber',
author_email='thomas.pointhuber@gmx.at',
url='https://github.com/pointhi/kicad-footprint-generator',
description="creating kicad footprints using python scripts",
long_description=long_description,
long_description_content_type='text/markdown',
license="GPL3+",
install_requires=requirements,
extras_require={
'test': dev_requirements
},
packages=find_packages('.', exclude=["*tests*", "*examples*"]),
test_suite='tests',
classifiers=[
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)'
],
)