This commit is contained in:
2024-07-20 13:00:29 +02:00
parent e69e933a0f
commit 91beedbc31
2 changed files with 76 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ with open(path.join(path.abspath(path.dirname(__file__)), 'README.md'), encoding
setup(
name="engineering",
version="2020.10.21",
version="2024.07.20",
description="engineering tools",
long_description=long_description,
author="Daniel Weschke",
@@ -16,18 +16,24 @@ setup(
package_dir={'': 'src'},
packages=find_packages("src"),
py_scripts = [
# mech
'beam.py',
'plate.py',
'tube.py',
# et
'awg.py',
],
entry_points={
'console_scripts': [
# mech
'eng-beam=beam:main',
'eng-plate=plate:main',
'eng-tube=tube:main',
# et
'eng-awg=awg:main',
],
},
keywords = 'mechanics plate tube stress',
keywords = 'mechanical electrical engineering mechanics plate tube stress',
license="MIT",
classifiers=[
'Environment :: Console',