Skip to content
This repository has been archived by the owner on Aug 11, 2022. It is now read-only.

Commit

Permalink
template
Browse files Browse the repository at this point in the history
  • Loading branch information
scivision committed Dec 1, 2017
1 parent 499f4f7 commit df6af51
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Expand Up @@ -10,8 +10,11 @@ LICENSE text eol=lf
*.c text eol=lf
*.cpp text eol=lf
*.f text eol=lf
*.for text eol=lf
*.f90 text eol=lf
*.md text eol=lf
*.rst text eol=lf
*.csv text eol=lf
*.m text eol=lf
*.grc text eol=lf
*.pas text eol=lf
5 changes: 1 addition & 4 deletions .travis.yml
Expand Up @@ -21,10 +21,7 @@ addons:
packages:
- gfortran

before_install:
- pip -q install coveralls

install: pip install -e .
install: pip install -e .[tests]

script: coverage run tests/test.py -v

Expand Down
9 changes: 6 additions & 3 deletions setup.py
@@ -1,7 +1,8 @@
#!/usr/bin/env python
req = ['nose','numpy',
install_requires = ['numpy',
'sciencedates',
'spacepy']
tests_require=['nose','coveralls']
# %%
from setuptools import setup, find_packages

Expand All @@ -17,9 +18,11 @@
'Topic :: Scientific/Engineering :: Atmospheric Science',
'Programming Language :: Python :: 3',
],
install_requires=req,
install_requires=install_requires,
python_requires='>=3.6',
extras_requires={'plot':['astrometry_azel','matplotlib',],
'fov':['histutils','pymap3d','netcdf4','h5py','scipy',]}
'fov':['histutils','pymap3d','netcdf4','h5py', 'scipy',],
'tests':tests_require},
tests_require=tests_require,
)

0 comments on commit df6af51

Please sign in to comment.