-
Notifications
You must be signed in to change notification settings - Fork 0
Working with packages
markvankoningsveld edited this page Sep 8, 2018
·
7 revisions
When your code is more mature it may be convenient to create a package. This can be done with the pyscaffold package.
putup myproject -p mypackage -l gpl3
myproject will be the name of the folder in which the package template is created, while mypackage will be the name of the package that will be generated in the src folder
You can start developing your package by starting a new repository, or by opening a branch in your current repository. You can install the package in your python installation by the following commands:
git clone https://github.com/TUDelft-CITG/myproject
cd myproject
pip install -U pip
pip install -U setuptools
pip install -e .