forked from INTI-CMNB/KiBoM
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request SchrodingersGat#138 from Evidlo/master
add kibom.__main__:main entry point
- Loading branch information
Showing
1 changed file
with
3 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,30 +9,21 @@ | |
|
||
setuptools.setup( | ||
name="kibom", | ||
|
||
version=KIBOM_VERSION, | ||
|
||
author="Oliver Walters", | ||
|
||
author_email="[email protected]", | ||
|
||
description="Bill of Materials generation tool for KiCad EDA", | ||
|
||
long_description=long_description, | ||
|
||
keywords="kicad, bom, electronics, schematic, bill of materials", | ||
|
||
url="https://github.com/SchrodingersGat/KiBom", | ||
|
||
license="MIT", | ||
|
||
packages=setuptools.find_packages(), | ||
|
||
scripts=['KiBOM_CLI.py'], | ||
|
||
entry_points={ | ||
'console_scripts': ['kibom = kibom.__main__:main'] | ||
}, | ||
install_requires=[ | ||
"xlsxwriter", | ||
], | ||
|
||
python_requires=">=2.7" | ||
) |