diff --git a/docs/source/conf.py b/docs/source/conf.py index 2ea7ca72..3e90f91c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -41,7 +41,7 @@ master_doc = 'index' # General information about the project. project = u'Catalyst' -copyright = u'2017, Enigma MPC' +copyright = u'2017, Enigma MPC, Inc.' # The full version, including alpha/beta/rc tags, but excluding the commit hash #release = version.split('+', 1)[0] diff --git a/docs/source/install.rst b/docs/source/install.rst index 71e3d21f..b13e8dfd 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -4,12 +4,12 @@ Install Installing with ``pip`` ----------------------- -Installing Zipline via ``pip`` is slightly more involved than the average +Installing Catalyst via ``pip`` is slightly more involved than the average Python package. There are two reasons for the additional complexity: -1. Zipline ships several C extensions that require access to the CPython C API. +1. Catalyst ships several C extensions that require access to the CPython C API. In order to build the C extensions, ``pip`` needs access to the CPython header files for your Python installation. @@ -28,13 +28,19 @@ your particular platform), you should be able to simply run .. code-block:: bash - $ pip install zipline + $ pip install enigma-catalyst -If you use Python for anything other than Zipline, we **strongly** recommend +If you use Python for anything other than Catalyst, we **strongly** recommend that you install in a `virtualenv `_. The `Hitchhiker's Guide to Python`_ provides an `excellent tutorial on virtualenv -`_. +`_. Here's a summarized +version: + +.. code-block:: bash + $ virtualenv catalyst-venv + $ source ./catalyst-venv/bin/activate + $ pip install enigma-catalyst GNU/Linux ~~~~~~~~~ diff --git a/setup.py b/setup.py index a3243545..c358948b 100644 --- a/setup.py +++ b/setup.py @@ -304,7 +304,7 @@ setup( if '__pycache__' not in root}, license='Apache 2.0', classifiers=[ - 'Development Status :: 2 - Pre-Alpha', + 'Development Status :: 3 - Alpha', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', 'Programming Language :: Python',