Skip to content

Commit

Permalink
Remove references to beeware as an installable package.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 committed Apr 18, 2020
1 parent 0f02dfc commit 66872e1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 12 deletions.
22 changes: 11 additions & 11 deletions docs/tutorial/tutorial-1.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,25 @@ We're ready to create our first application.
Install the BeeWare tools
=========================

First, we need to install the beeware tools and libraries. BeeWare provides a
convenient shortcut for doing this: a ``beeware`` meta-package on PyPI that
includes all the pieces you'll need to run this tutorial. Make sure you're in
the ``beeware-tutorial`` you created in :doc:`Tutorial 0 <tutorial-0>`, with
the ``beeware-venv`` virtual environment activated, and run:
First, we need to install **Briefcase**. Briefcase is a BeeWare tool that can
be used to package your application for distribution to end users - but it can
also be used to bootstrap a new project. Make sure you're in the
``beeware-tutorial`` directory you created in :doc:`Tutorial 0 <tutorial-0>`,
with the ``beeware-venv`` virtual environment activated, and run:

.. tabs::

.. group-tab:: macOS

.. code-block:: bash
(beeware-venv) $ python -m pip install beeware
(beeware-venv) $ python -m pip install briefcase
.. group-tab:: Linux

.. code-block:: bash
(beeware-venv) $ python -m pip install beeware
(beeware-venv) $ python -m pip install briefcase
.. admonition:: Possible errors during installation

Expand All @@ -38,7 +38,7 @@ the ``beeware-venv`` virtual environment activated, and run:

.. code-block:: doscon
(beeware-venv)C:\...>python -m pip install beeware
(beeware-venv)C:\...>python -m pip install briefcase
.. admonition:: Possible errors during installation

Expand Down Expand Up @@ -104,9 +104,9 @@ bootstrap a new project.
Bootstrap a new project
=======================

Let's start our first BeeWare project! Using the Briefcase ``new`` command,
we're going to create an application called **Hello World**. Run the following
from your command prompt:
Let's start our first BeeWare project! We're going to use the Briefcase
``new`` command to create an application called **Hello World**. Run the
following from your command prompt:

.. tabs::

Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ zip_safe = False
python_requires = >= 3.5
install_requires =
briefcase >= 0.3.0
toga >= 0.3.0.dev18

[bdist_wheel]
universal=1

0 comments on commit 66872e1

Please sign in to comment.