-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Matthew Hill
committed
Oct 18, 2017
0 parents
commit 7ad9db3
Showing
10 changed files
with
1,830 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# Compiled files | ||
*.py[cod] | ||
*.a | ||
*.o | ||
*.so | ||
__pycache__ | ||
|
||
# Ignore .c files by default to avoid including generated code. If you want to | ||
# add a non-generated .c extension, use `git add -f filename.c`. | ||
*.c | ||
|
||
# Other generated files | ||
*/version.py | ||
*/cython_version.py | ||
htmlcov | ||
.coverage | ||
MANIFEST | ||
.ipynb_checkpoints | ||
|
||
# Sphinx | ||
docs/api | ||
docs/_build | ||
|
||
# Eclipse editor project files | ||
.project | ||
.pydevproject | ||
.settings | ||
|
||
# Pycharm editor project files | ||
.idea | ||
|
||
# Floobits project files | ||
.floo | ||
.flooignore | ||
|
||
# Packages/installer info | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
distribute-*.tar.gz | ||
|
||
# Other | ||
.cache | ||
.tox | ||
.*.sw[op] | ||
*~ | ||
.project | ||
.pydevproject | ||
.settings | ||
|
||
# Mac OSX | ||
.DS_Store |
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,3 @@ | ||
[submodule "astropy_helpers"] | ||
path = astropy_helpers | ||
url = https://github.com/astropy/astropy-helpers.git |
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,41 @@ | ||
include README.rst | ||
include CHANGES.rst | ||
|
||
include ez_setup.py | ||
include ah_bootstrap.py | ||
include setup.cfg | ||
include packagename/tests/coveragerc | ||
|
||
recursive-include packagename *.pyx *.c *.pxd | ||
recursive-include docs * | ||
recursive-include licenses * | ||
recursive-include cextern * | ||
recursive-include scripts * | ||
|
||
prune build | ||
prune docs/_build | ||
prune docs/api | ||
|
||
|
||
# the next few stanzas are for astropy_helpers. It's derived from the | ||
# astropy_helpers/MANIFEST.in, but requires additional includes for the actual | ||
# package directory and egg-info. | ||
|
||
include astropy_helpers/README.rst | ||
include astropy_helpers/CHANGES.rst | ||
include astropy_helpers/LICENSE.rst | ||
recursive-include astropy_helpers/licenses * | ||
|
||
include astropy_helpers/ez_setup.py | ||
include astropy_helpers/ah_bootstrap.py | ||
|
||
recursive-include astropy_helpers/astropy_helpers *.py *.pyx *.c *.h *.rst | ||
recursive-include astropy_helpers/astropy_helpers.egg-info * | ||
# include the sphinx stuff with "*" because there are css/html/rst/etc. | ||
recursive-include astropy_helpers/astropy_helpers/sphinx * | ||
|
||
prune astropy_helpers/build | ||
prune astropy_helpers/astropy_helpers/tests | ||
|
||
|
||
global-exclude *.pyc *.o |
Oops, something went wrong.