summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Remove setup file, no longer needed.Kurt B. Kaiser2003-06-121-118/+0
|
* Update for releaseKurt B. Kaiser2003-05-301-0/+2
| | | | | Modified Files: CREDITS.txt INSTALL.txt LICENSE.txt aboutDialog.py setup.py
* A interruptmodule.cKurt B. Kaiser2003-03-101-1/+2
| | | | | | M setup.py Implements an interrupt extension module which allows a subthread to raise an interrupt in the main thread.
* 1. Restore the rest of Python IDLE setup.py Rev 1.4 (Python SF 634078)Kurt B. Kaiser2003-01-211-4/+7
| | | | | | (Loewis) which uses 'SRCDIR' (if available) in package dir path. 2. Merge Python IDLE setup.py Rev 1.5 (Loewis) to allow installation from the build directory. IDLEfork SF Patch 668998 (Loewis)
* 1. Remove obsolete, incorrect comment on non-package installationKurt B. Kaiser2003-01-021-7/+3
| | | | | 2. Add more .txt files to installation 3. Fix the reference to Visual Python, s/b VPython
* M PyShell.pyKurt B. Kaiser2002-12-241-6/+5
| | | | | | | | | | | | | | | | M idle M idle.py M idle.pyw M setup.py Switch back to installing IDLE as a package. The IDLE GUI and the subprocess will both attempt to start up via the package mechanism, but if IDLE is not yet installed it is possible to run by calling python idle.py in the IDLE source directory, or to add the source directory to sys.path. One advantage of doing it this way is IDLE stays off sys.path. Developed in collaboration with Tony Lownds.
* M MANIFEST.inKurt B. Kaiser2002-12-231-50/+36
| | | | | | | | | | | | | | | M PyShell.py M idlever.py M setup.py 1. Update MANIFEST.in to include all non-pure Python files 2. PyShell and idlever reflect Rev 0.9a0 3. setup.py modified to install IDLE as a collection of modules with a .pth file living at the idlelib level in site-packages. This was done to make it easier to run from the source directory prior to installing IDLE. This approach may change back to the package technique depending on what happens with the Mac installation development.
* Add configuration for packaging.Kurt B. Kaiser2002-12-221-0/+3
|
* M PyShell.pyKurt B. Kaiser2002-12-211-0/+15
| | | | | | | | | | | | | M idle M setup.py To be able to run from the source directory or from an installed version of IDLE, and also to allow the subprocess to find run(), Python needs to have the idlelib package on its path. 1. Modify setup.py to supply a .pth file living at same level as idlelib 2. Move boolcheck to PyShell.py 3. Remove boolcheck and path setting code from the "idle" script
* Update the setup file:Kurt B. Kaiser2002-12-201-34/+42
| | | | | | | | | 1. Make it easier to change the package and script installation names. 2. Update the text files transferred to include the .def and new .txt files. 3. Update the description and long description, change email to python-dev, update the url to point at sourceforge. 4. Rename the build and install classes for clarity.
* Port Martin von Loewis checkin from Python:Neal Norwitz2002-11-301-5/+24
| | | | Add --check-tkinter to setup.py. Install IDLE. Fixes #634078.
* INSTALLATION: Remove the coexist.patch instructionsKurt B. Kaiser2001-07-171-4/+9
| | | | | | | | **************** setup.py: Remove the idles script, add some words on IDLE Fork to the long_description, and clean up some line spacing.
* Add a script "idles" which opens a Python Shell window.Kurt B. Kaiser2001-07-161-1/+1
| | | | | | | | | The default behaviour of idlefork idle is to open an editor window instead of a shell. Complex expressions may be run in a fresh environment by selecting "run". There are times, however, when a shell is desired. Though one can be started by "idle -t 'foo'", this script is more convenient. In addition, a shell and an editor window can be started in parallel by "idles -e foo.py".
* Installing Idle to site-packages via Distutils does notKurt B. Kaiser2001-07-141-1/+1
| | | | | | copy the Idle help.txt file. Ref SF Python Patch 422471
* Initial revisionSteven M. Gava2001-06-251-0/+81