chrisdembia / yeadon

The human inertia model developed by Fred Yeadon in 1990.
https://pypi.python.org/pypi/yeadon
Other
29 stars 9 forks source link

Use entry points instead of scripts in setup.py. #128

Closed moorepants closed 4 months ago

moorepants commented 6 years ago

This would allow a noarch build in conda forge (might also the the correct way to do it).

https://github.com/conda-forge/yeadon-feedstock/pull/8

moorepants commented 4 months ago

Here is the one from skijumpdesign:

 entry_points={'console_scripts':
                  ['skijumpdesign = skijumpdesign.app:app.run_server']},

We have logic in bin/yeadon so that would need to be moved into the yeadon package. Could do bin/yeadon->yeadon/app.py then use the above entry point.