Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to pytac version 0.0.2 #22

Merged
merged 1 commit into from
May 31, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down