Skip to content

Commit

Permalink
Checking versionneer and install
Browse files Browse the repository at this point in the history
  • Loading branch information
serazing committed Feb 24, 2017
1 parent cf3ee73 commit c40c9eb
Show file tree
Hide file tree
Showing 9 changed files with 390 additions and 293 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
xscale/_version.py export-subst
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include versioneer.py
include xscale/_version.py
15 changes: 8 additions & 7 deletions ci/requirements-py27-dev.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
name: test_env
dependencies:
- python=2.7
- numpy==1.11.0
- scipy==0.17.0
- numpy
- scipy
- netcdf4
- pandas==0.18.0
- xarray==0.7.2
- dask==0.9.0
- bottleneck==1.0.0
- numba==0.26.0
- pandas
- xarray
- dask
- bottleneck
- numba
- matplotlib
- pip:
- pytest-cov
8 changes: 5 additions & 3 deletions ci/requirements-py27-min.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,11 @@ name: test_env
dependencies:
- python=2.7
- numpy==1.11.0
- scipy==0.17.1
- scipy==0.18.0
- pandas==0.18.0
- dask==0.9.0
- xarray==0.7.2
- dask==0.12.0
- xarray==0.8.2
- numba==0.30.0
- matplotlib==1.5.3
- pip:
- pytest-cov
13 changes: 8 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
from setuptools import setup
import versioneer

DISTNAME = 'xarray'
DISTNAME = 'xscale'
PACKAGES = ['xscale', 'xscale.filtering', 'xscale.signal', 'xscale.spectral']
TESTS = [p + '.tests' for p in PACKAGES]
INSTALL_REQUIRES = ['numpy >= 1.7', 'pandas >= 0.15.0', 'xarray >=0.8'
'dask >=0.12.0', 'numba >= 0.30.0', 'scipy >= 0.18.0']
INSTALL_REQUIRES = ['numpy >= 1.7', 'scipy >= 0.18.0', 'xarray >= 0.8.2',
'dask >= 0.12.0', 'numba >= 0.30.0', ]
TESTS_REQUIRE = ['pytest >= 2.7.1']

URL = 'http://github.com/serazing/xscale'
Expand All @@ -17,9 +17,12 @@
LICENSE = 'Apache'
DESCRIPTION = 'Signal processing tools based on xarray and dask'

VERSION = versioneer.get_version()
CMDCLASS = versioneer.get_cmdclass()

setup(name=DISTNAME,
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
version=VERSION,
cmdclass=CMDCLASS,
description=DESCRIPTION,
url=URL,
author=AUTHOR,
Expand Down
Loading

0 comments on commit c40c9eb

Please sign in to comment.