-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #44 from bourque/package-install
Package install
- Loading branch information
Showing
9 changed files
with
62 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
*.pyc | ||
*.fits | ||
*.ipynb_checkpoints/ | ||
utils/config.json | ||
utils/config.json | ||
build/ | ||
dist/ | ||
jwql.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
include README.md | ||
include LICENSE | ||
include environment.yml | ||
include setup.py | ||
|
||
recursive-include notebooks * | ||
recursive-include style_guide * | ||
recursive-include typing_demo * | ||
|
||
exclude *.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
import numpy as np | ||
from setuptools import setup | ||
from setuptools import find_packages | ||
|
||
VERSION = '0.4.0' | ||
|
||
AUTHORS = 'Matthew Bourque, Sara Ogaz, Joe Filippazzo, Bryan Hilbert, Misty Cracraft, Graham Kanarek' | ||
AUTHORS += 'Johannes Sahlmann, Lauren Chambers, Catherine Martlin' | ||
|
||
REQUIRES = ['astropy', 'django', 'matplotlib', 'numpy', 'python-dateutil', 'sphinx', 'sphinx-automodapi', 'sqlalchemy'] | ||
|
||
setup( | ||
name = 'jwql', | ||
version = VERSION, | ||
description = 'The JWST Quicklook Project', | ||
url = 'https://github.com/spacetelescope/jwql.git', | ||
author = AUTHORS, | ||
author_email='[email protected]', | ||
license='BSD', | ||
keywords = ['astronomy', 'python'], | ||
classifiers = ['Programming Language :: Python'], | ||
packages = find_packages(), | ||
install_requires = REQUIRES, | ||
include_package_data=True, | ||
include_dirs = [np.get_include()], | ||
) |