Lines Matching +full:in +full:- +full:development
1 "Development Mode"
5 build a distribution of your project, not use it in its "raw" or "unbuilt"
8 change to it during development.
11 need to do development on two related projects at the same time. You may need
12 to put both projects' packages in the same directory to run them, but need to
15 Setuptools allows you to deploy your projects for use in a common directory or
17 code in its checkout directory, and only need to run build commands when you
21 or the site-packages directory).
25 Instead, it creates a special ``.egg-link`` file in the deployment directory,
27 Python's ``site-packages`` directory, it will also update the
28 ``easy-install.pth`` file to include your project's source code, thereby making
31 In addition, the ``develop`` command creates wrapper scripts in the target
32 script directory that will run your in-development scripts after ensuring that
37 doing development work.
39 When you're done with a given development task, you can remove the project
40 source from a staging area using ``setup.py develop --uninstall``, specifying
46 Note that you can also apply setuptools commands to non-setuptools projects,
49 …python -c "import setuptools; with open('setup.py') as f: exec(compile(f.read(), 'setup.py', 'exec…