diff --git a/README.rst b/README.rst index a56323a5..393d8f64 100644 --- a/README.rst +++ b/README.rst @@ -34,8 +34,17 @@ The problems that Pipenv seeks to solve are multi-faceted: - Managing a ``requirements.txt`` file `can be problematic `_, so Pipenv uses the upcoming ``Pipfile`` and ``Pipfile.lock`` instead, which is superior for basic use cases. -User Testimonials ------------------ +Installation +------------ + +:: + + $ pip install pipenv + +✨🍰✨ + +☤ User Testimonials +------------------- **Jannis Leidel**, former pip maintainer— *Pipenv is the porcelain I always wanted built for pip. It fits my brain and mostly replaces virtualenvwrapper and manual pip calls for me. Use it.* @@ -186,16 +195,6 @@ Magic shell completions are now enabled! -☤ Installation --------------- - -:: - - $ pip install pipenv - -✨🍰✨ - - ☤ Documentation --------------- diff --git a/docs/index.rst b/docs/index.rst index 1500049d..7f228e39 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -32,6 +32,17 @@ It automatically creates and manages a virtualenv for your projects, as well as .. image:: http://media.kennethreitz.com.s3.amazonaws.com/pipenv.gif +Install Pipenv Today! +--------------------- + +:: + + $ pip install pipenv + ✨🍰✨ + +If you have excellent taste, there's also a `fancy installation method `_. + + User Testimonials ----------------- diff --git a/setup.py b/setup.py index df17fcb1..a9432bac 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ import codecs import os import sys -from setuptools import setup +from setuptools import find_packages, setup here = os.path.abspath(os.path.dirname(__file__)) @@ -55,9 +55,7 @@ setup( author='Kenneth Reitz', author_email='me@kennethreitz.org', url='https://github.com/kennethreitz/pipenv', - packages=[ - 'pipenv', 'pipenv.vendor', - 'pipenv.vendor.pipfile'], + packages=find_packages(exclude=('tests',)), entry_points={ 'console_scripts': ['pipenv=pipenv:cli'], },