forked from pvlib/pvlib-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MANIFEST.in
35 lines (30 loc) · 834 Bytes
/
MANIFEST.in
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
include MANIFEST.in
include AUTHORS.md
include LICENSE
include README.md
include setup.py
# include most everything under pvlib by default
# better to package too much than not enough
graft pvlib
# we included pvlib files needed to compile NREL SPA code in graft above,
# now we exclude the NREL code itself to comply with their license
global-exclude */spa.c
global-exclude */spa.h
prune pvlib/spa_c_files/build
graft docs
prune docs/sphinx/build
prune docs/sphinx/source/generated
# all doc figures created by doc build
prune docs/sphinx/source/savefig
global-exclude __pycache__
global-exclude *.pyc
global-exclude *.pyo
global-exclude *.pyd
global-exclude *.so
global-exclude *~
global-exclude .DS_Store
global-exclude .git*
global-exclude \#*
global-exclude .ipynb_checkpoints
include versioneer.py
include pvlib/_version.py