-
Notifications
You must be signed in to change notification settings - Fork 1.1k
add license, docs, authors to manifest, exclude spa files #580
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
0b80e4b
5b679c4
5a26cbf
37308f9
01e8c3e
6fbdf66
d35a0fc
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,23 @@ | ||
#include *.txt | ||
include AUTHORS.md | ||
include LICENSE | ||
include README.md | ||
|
||
include versioneer.py | ||
include pvlib/_version.py | ||
|
||
recursive-include pvlib/data * | ||
include README.md | ||
|
||
include pvlib/spa_c_files/*.h | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO this should be removed, b/c I don't think there are any header files are in There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree. Do we need to replace it with anything else so that the subpackage is properly distributed (minus the NREL files)? For the record... the only way this would cause the NREL files to be distributed is if the files were manually added to the |
||
|
||
#recursive-include docs *.txt | ||
recursive-exclude * __pycache__ | ||
recursive-exclude * *.py[co] | ||
|
||
recursive-include docs * | ||
prune docs/tutorials | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just curious, why prune the Jupyter notebook tutorials? IMO these could be run locally more interactively, than viewing them in nbviewer or GitHub. IMO pvlib should include these in the sdist. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes, better to include them. |
||
prune docs/sphinx/build | ||
prune docs/sphinx/source/generated | ||
# all doc figures created by doc build | ||
prune docs/sphinx/source/savefig | ||
|
||
global-exclude .DS_Store | ||
global-exclude .ipynb_checkpoints/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AFAIK, this line is not necessary, since
pvlib
is a package, and is already listed insetup.py
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree, but I believe this was part of the versioneer setup instructions. Other projects include this line as well. So I recommend we leave it for now.