Skip to content

Commit

Permalink
Merge branch 'development'
Browse files Browse the repository at this point in the history
  • Loading branch information
untzag committed Aug 8, 2017
2 parents 2317860 + 8425d52 commit f491d17
Show file tree
Hide file tree
Showing 422 changed files with 77,366 additions and 1,880 deletions.
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ __pycache__/
# C extensions
*.so

Images
# vim swap files
*.sw?

# Images
*.jpg
*.gif
*.png
!logo/logo.png
*.svg
*.ico

Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTORS
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Maintainers (alphabetical by last name)
Kyle Sunden <sunden@wisc.edu> (@ksunden)
Blaise Thompson <blaise@untzag.com> (@untzag)

Contributors (alphabetical by last name)
Kyle Czech (@kjczech)
Daniel Kohler (@p770193)
Darien Morrow <darienmorrow@gmail.com> (@darienmorrow)
Nathan Neff-Mallon (@neffmallon)
Kyle Sunden <sunden@wisc.edu> (@ksunden)
Rachel Swedin (@RachelSwedin)
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
include CONTRIBUTORS
recursive-include WrightTools/datasets *
include LICENSE
include README.md
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<img src="logo/icon.png" align="right" />

# WrightTools

Tools for loading, processing, and plotting multidimensional spectroscopy data.

# Installation
# Install

## conda-forge

Expand All @@ -11,7 +13,7 @@ It seamlessly handles non-Python library dependencies which many scientific Pyth
Conda is reccomended, especially for Windows users.
If you don't have Python yet, start by [installing Anaconda](https://www.continuum.io/downloads).

[conda-forge](https://conda-forge.org/) is a community-driven conda channel that contains smaller packages not maintained by [Anaconda](https://www.continuum.io/anaconda-overview).
[conda-forge](https://conda-forge.org/) is a community-driven conda channel. [conda-forge contains a WrightTools feedstock](https://github.com/conda-forge/wrighttools-feedstock).

```
conda config --add channels conda-forge
Expand Down
13 changes: 5 additions & 8 deletions WrightTools/__init__.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,23 @@
### create temp folder if none exists #########################################


import sys as _sys
import os as _os

import matplotlib as _matplotlib


### temp directory ############################################################
# --- temp directory ------------------------------------------------------------------------------


_temp_dir = _os.path.join(_os.path.dirname(__file__), 'temp')
if not _os.path.isdir(_temp_dir):
_os.mkdir(_temp_dir)


### version ###################################################################
# --- version -------------------------------------------------------------------------------------


# MAJOR.MINOR.PATCH (semantic versioning)
# major version changes may break backwards compatibility
__version__ = '2.13.3'
__version__ = '2.13.4'

# add git branch, if appropriate
_directory = _os.path.dirname(_os.path.dirname(__file__))
Expand All @@ -34,7 +31,7 @@
__branch__ = None


### import ####################################################################
# --- import --------------------------------------------------------------------------------------


from . import artists
Expand All @@ -48,7 +45,7 @@
from . import units


### rcparams ##################################################################
# --- rcparams ------------------------------------------------------------------------------------

if int(_sys.version.split('.')[0]) > 2 and int(_matplotlib.__version__.split('.')[0]) > 1:
artists.apply_rcparams('fast')

0 comments on commit f491d17

Please sign in to comment.