-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (44 loc) · 1.57 KB
/
setup.py
File metadata and controls
47 lines (44 loc) · 1.57 KB
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
39
40
41
42
43
44
45
46
47
import setuptools
import unittest
exec(open('pykicadlib/version.py').read())
with open("README.rst", "r") as file:
long_description = file.read()
setuptools.setup(
name="pykicadlib",
version=__version__,
description="Python KiCAD library parser/generator",
long_description=long_description,
keywords="KiCAD symbol footprint device PCB schematic",
license="MIT",
author="Benjamin Füldner",
author_email="benjamin@fueldner.net",
url="https://code.fueldner.net/opensource/pykicadlib",
project_urls={
'Source': 'https://github.com/bfueldner/pykicadlib',
'Bug Reports': 'https://github.com/bfueldner/pykicadlib/issues',
},
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: System :: Hardware",
"Topic :: Software Development",
"Topic :: Software Development :: Embedded Systems",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Home Automation",
],
python_requires='>=3.5',
entry_points={
'console_scripts': [
'kicadlib-symbols = scripts.symbols:main',
],
},
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)