diff --git a/README.rst b/README.rst index a001babd..7aecc7c2 100644 --- a/README.rst +++ b/README.rst @@ -15,17 +15,17 @@ Testing It is simplest to work with a virtualenv. Then:: - >>> pip install -r requirements/local.txt - >>> export PYTHONPATH=. - >>> py.test test + $ pip install -r requirements/local.txt + $ export PYTHONPATH=. + $ py.test test To see a coverage report:: - >>> py.test --cov=pytac test + $ py.test --cov=pytac test To build documentation correctly:: - >>> cd docs - >>> sphinx-build -b html -E . _build/html + $ cd docs + $ sphinx-build -b html -E . _build/html The documentation is built inside _build/html. diff --git a/setup.py b/setup.py index 8a3ca7cd..4f34602b 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.0.1', + version='0.0.2', description='Python Toolkit for Accelerator Controls (Pytac) is a Python library intended to make it easy to work with particle accelerators.', long_description=long_description, @@ -76,7 +76,7 @@ # your project is installed. For an analysis of "install_requires" vs pip's # requirements files see: # https://packaging.python.org/en/latest/requirements.html - install_requires=[], + install_requires=['numpy', 'scipy'], # List additional groups of dependencies here (e.g. development # dependencies). You can install these using the following syntax,