You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The end-user should be able to install and use this package easily, by doing just
pip install .
What needs to be done
The folder structure of the Python project should be:
- setup.py
- VERSION
- MANIFEST.in
- README.md
deadcopter/
L flight_controller/
L __init__.py (1)
L jinja_templates/
L test/
L __init__.py (2)
We need
a setup.py file (in which we should exclude test) and the auxiliary files VERSION and MANIFEST.in; the setup.py should list the dependencies; we have pyquaternion, scipy and control I think
rename src to deadcopter (it should be the name of the Python package)
the file __init__.py in (1) should not use import but rather:
from .copterimport*from .jinja_createimport*from .simulatorimport*
the file __init__.py (2) should not be empty, but should load the submodules of the project
Motivation
The end-user should be able to install and use this package easily, by doing just
What needs to be done
The folder structure of the Python project should be:
We need
setup.py
file (in which we should excludetest
) and the auxiliary filesVERSION
andMANIFEST.in
; thesetup.py
should list the dependencies; we havepyquaternion
,scipy
andcontrol
I thinksrc
todeadcopter
(it should be the name of the Python package)__init__.py
in (1) should not useimport
but rather:__init__.py
(2) should not be empty, but should load the submodules of the projectSee also
OpEn
The text was updated successfully, but these errors were encountered: