Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
d1e6671e
Commit
d1e6671e
authored
Jun 29, 2014
by
Martin Geisler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Spell check documentation
parent
721f3924
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
13 deletions
+13
-13
docs/easy_install.txt
docs/easy_install.txt
+4
-4
docs/formats.txt
docs/formats.txt
+2
-2
docs/pkg_resources.txt
docs/pkg_resources.txt
+3
-3
docs/python3.txt
docs/python3.txt
+1
-1
docs/setuptools.txt
docs/setuptools.txt
+3
-3
No files found.
docs/easy_install.txt
View file @
d1e6671e
...
...
@@ -39,7 +39,7 @@ You will need at least Python 2.6. An ``easy_install`` script will be
installed in the normal location for Python scripts on your platform.
Note that the instructions on the setuptools PyPI page assume that you are
are install
l
ing to Python's primary ``site-packages`` directory. If this is
are installing to Python's primary ``site-packages`` directory. If this is
not the case, you should consult the section below on `Custom Installation
Locations`_ before installing. (And, on Windows, you should not use the
``.exe`` installer when installing to an alternate location.)
...
...
@@ -915,7 +915,7 @@ Command-Line Options
domain. The glob patterns must match the *entire* user/host/port section of
the target URL(s). For example, ``*.python.org`` will NOT accept a URL
like ``http://python.org/foo`` or ``http://www.python.org:8080/``.
Multiple patterns can be specified by separting them with commas. The
Multiple patterns can be specified by separ
a
ting them with commas. The
default pattern is ``*``, which matches anything.
In general, this option is mainly useful for blocking EasyInstall's web
...
...
@@ -1014,7 +1014,7 @@ application, simply set the OS environment of that application to a specific val
Use "virtualenv"
~~~~~~~~~~~~~~~~
"virtualenv" is a 3rd-party python package that effectively "clones" a python installation, thereby
creating an isolated location to intall packages. The evolution of "virtualenv" started before the existence
creating an isolated location to in
s
tall packages. The evolution of "virtualenv" started before the existence
of the User installation scheme. "virtualenv" provides a version of ``easy_install`` that is
scoped to the cloned python install and is used in the normal way. "virtualenv" does offer various features
that the User installation scheme alone does not provide, e.g. the ability to hide the main python site-packages.
...
...
@@ -1171,7 +1171,7 @@ History
* Fixed not HTML-decoding URLs scraped from web pages
0.6c5
* Fixed ``.dll`` files on Cygwin not having executable permisions when an egg
* Fixed ``.dll`` files on Cygwin not having executable permis
s
ions when an egg
is installed unzipped.
0.6c4
...
...
docs/formats.txt
View file @
d1e6671e
...
...
@@ -349,7 +349,7 @@ of the project's "traditional" scripts (i.e., those specified using the
``scripts`` keyword to ``setup()``). This is so that they can be
reconstituted when an ``.egg`` file is installed.
The scripts are placed here using the disutils' standard
The scripts are placed here using the dis
t
utils' standard
``install_scripts`` command, so any ``#!`` lines reflect the Python
installation where the egg was built. But instead of copying the
scripts to the local script installation directory, EasyInstall writes
...
...
@@ -595,7 +595,7 @@ order to one another that is defined by their ``PYTHONPATH`` and
The net result of these changes is that ``sys.path`` order will be
as follows at runtime:
1. The ``sys.argv[0]`` directory, or an em
tp
y string if no script
1. The ``sys.argv[0]`` directory, or an em
pt
y string if no script
is being executed.
2. All eggs installed by EasyInstall in any ``.pth`` file in each
...
...
docs/pkg_resources.txt
View file @
d1e6671e
...
...
@@ -62,7 +62,7 @@ importable distribution
pluggable distribution
An importable distribution whose filename unambiguously identifies its
release (i.e. project and version), and whose contents unam
a
biguously
release (i.e. project and version), and whose contents unambiguously
specify what releases of other projects will satisfy its runtime
requirements.
...
...
@@ -1434,7 +1434,7 @@ shown here. The `manager` argument to the methods below must be an object
that supports the full `ResourceManager API`_ documented above.
``get_resource_filename(manager, resource_name)``
Return a true filesystem path for `resource_name`, co
-
ordinating the
Return a true filesystem path for `resource_name`, coordinating the
extraction with `manager`, if the resource must be unpacked to the
filesystem.
...
...
@@ -1586,7 +1586,7 @@ Parsing Utilities
character is ``#`` are considered comment lines.)
If `strs` is not an instance of ``basestring``, it is iterated over, and
each item is passed recursively to ``yield_lines()``, so that an arbitarily
each item is passed recursively to ``yield_lines()``, so that an arbit
r
arily
nested sequence of strings, or sequences of sequences of strings can be
flattened out to the lines contained therein. So for example, passing
a file object or a list of strings to ``yield_lines`` will both work.
...
...
docs/python3.txt
View file @
d1e6671e
...
...
@@ -69,7 +69,7 @@ before you run the test command, as the files otherwise will seem updated,
and no conversion will happen.
In general, if code doesn't seem to be converted, deleting the build directory
and trying again is a good safe
r
guard against the build directory getting
and trying again is a good safeguard against the build directory getting
"out of sync" with the source directory.
Distributing Python 3 modules
...
...
docs/setuptools.txt
View file @
d1e6671e
...
...
@@ -520,7 +520,7 @@ as the following::
}
)
Any eggs built from the above setup script will include a short ex
c
ecutable
Any eggs built from the above setup script will include a short executable
prelude that imports and calls ``main_func()`` from ``my_package.some_module``.
The prelude can be run on Unix-like platforms (including Mac and Linux) by
invoking the egg with ``/bin/sh``, or by enabling execute permissions on the
...
...
@@ -2180,7 +2180,7 @@ for future builds (even those run implicitly by the ``install`` command)::
setup.py build --compiler=mingw32 saveopts
The ``saveopts`` command saves all options for every comm
m
and specified on the
The ``saveopts`` command saves all options for every command specified on the
command line to the project's local ``setup.cfg`` file, unless you use one of
the `configuration file options`_ to change where the options are saved. For
example, this command does the same as above, but saves the compiler setting
...
...
@@ -2350,7 +2350,7 @@ Note, by the way, that the metadata in your ``setup()`` call determines what
will be listed in PyPI for your package. Try to fill out as much of it as
possible, as it will save you a lot of trouble manually adding and updating
your PyPI listings. Just put it in ``setup.py`` and use the ``register``
com
am
nd to keep PyPI up to date.
com
ma
nd to keep PyPI up to date.
The ``upload`` command has a few options worth noting:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment